summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorhalostatue <austin@zieglers.ca>2009-03-01 00:03:21 -0500
committerhalostatue <austin@zieglers.ca>2009-03-01 00:03:21 -0500
commit5aae09331ba613f3e8f1e7af301cb6e79e5fb43a (patch)
treef5933adfd046f3f734e42c8937e79d1b8bd71a8f /test
parent2ec42e6019ae6a90f7a2af31ef29f69ed7bc7593 (diff)
downloadmime-types-5aae09331ba613f3e8f1e7af301cb6e79e5fb43a.tar.gz
Trying to clean up some general usage.
Diffstat (limited to 'test')
-rw-r--r--test/test_all.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/test_all.rb b/test/test_all.rb
deleted file mode 100644
index ce41d15..0000000
--- a/test/test_all.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-#! /usr/bin/env ruby
-#--
-# MIME::Types
-# A Ruby implementation of a MIME Types information library. Based in spirit
-# on the Perl MIME::Types information library by Mark Overmeer.
-# http://rubyforge.org/projects/mime-types/
-#
-# Licensed under the Ruby disjunctive licence with the GNU GPL or the Perl
-# Artistic licence. See Licence.txt for more information.
-#
-# Copyright 2003 - 2009 Austin Ziegler
-#++
-
-$LOAD_PATH.unshift("#{File.dirname(__FILE__)}/../lib") if __FILE__ == $0
-
-$stderr.puts "Checking for test cases:"
-
-Dir[File.join(File.dirname($0), 'test_*.rb')].each do |testcase|
- next if File.basename(testcase) == File.basename(__FILE__)
- $stderr.puts "\t#{testcase}"
- load testcase
-end
-
-$stderr.puts " "