diff options
author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-17 09:51:32 +0000 |
---|---|---|
committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-17 09:51:32 +0000 |
commit | ed970e251343cca6d02eab806ff129b111e69a32 (patch) | |
tree | 540abf158bce2e25e93ee652b5b51a25921f4f53 /test/strscan | |
parent | 45ca1d07546fb4f53dd28798c241b7b9b21aa43d (diff) | |
download | ruby-ed970e251343cca6d02eab806ff129b111e69a32.tar.gz |
* 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/strscan')
-rw-r--r-- | test/strscan/test_stringscanner.rb | 9 |
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 |