summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-17 09:51:32 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-17 09:51:32 +0000
commited970e251343cca6d02eab806ff129b111e69a32 (patch)
tree540abf158bce2e25e93ee652b5b51a25921f4f53 /test
parent45ca1d07546fb4f53dd28798c241b7b9b21aa43d (diff)
* test/strscan/test_stringscanner.rb: require test/unit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/strscan/test_stringscanner.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/test/strscan/test_stringscanner.rb b/test/strscan/test_stringscanner.rb
index 322da4c48c..2bc37bc544 100644
--- a/test/strscan/test_stringscanner.rb
+++ b/test/strscan/test_stringscanner.rb
@@ -2,9 +2,8 @@
# test/strscan/test_stringscanner.rb
#
-require 'test/unit/testsuite'
-require 'test/unit/testcase'
require 'strscan'
+require 'test/unit'
class TestStringScanner < Test::Unit::TestCase
@@ -395,9 +394,3 @@ end
end
end
-
-
-if $0 == __FILE__
- require 'test/unit/ui/console/testrunner'
- Test::Unit::UI::Console::TestRunner.run(TestStringScanner.suite)
-end