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 | 9cc3419ed2b5b9a5f4887c0128ea0909bc1bbb38 (patch) | |
tree | 540abf158bce2e25e93ee652b5b51a25921f4f53 /test/strscan/test_stringscanner.rb | |
parent | d1b530da2ae6862bb0b7ef4955d0ac5077a29cac (diff) | |
download | ruby-9cc3419ed2b5b9a5f4887c0128ea0909bc1bbb38.tar.gz ruby-9cc3419ed2b5b9a5f4887c0128ea0909bc1bbb38.tar.xz ruby-9cc3419ed2b5b9a5f4887c0128ea0909bc1bbb38.zip |
* test/strscan/test_stringscanner.rb: require test/unit.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/strscan/test_stringscanner.rb')
-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 322da4c48..2bc37bc54 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 |