diff options
author | halostatue <austin@zieglers.ca> | 2009-03-01 00:03:21 -0500 |
---|---|---|
committer | halostatue <austin@zieglers.ca> | 2009-03-01 00:03:21 -0500 |
commit | 5aae09331ba613f3e8f1e7af301cb6e79e5fb43a (patch) | |
tree | f5933adfd046f3f734e42c8937e79d1b8bd71a8f /test | |
parent | 2ec42e6019ae6a90f7a2af31ef29f69ed7bc7593 (diff) | |
download | mime-types-5aae09331ba613f3e8f1e7af301cb6e79e5fb43a.tar.gz |
Trying to clean up some general usage.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_all.rb | 24 |
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 " " |