1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
aamine 2003-09-17 09:51:32 +00:00
parent 45ca1d0754
commit ed970e2513
2 changed files with 5 additions and 8 deletions

View file

@ -1,3 +1,7 @@
Wed Sep 17 18:51:02 2003 Minero Aoki <aamine@loveruby.net>
* test/strscan/test_stringscanner.rb: require test/unit.
Wed Sep 17 18:35:34 2003 Minero Aoki <aamine@loveruby.net>
* test/strscan/test_stringscanner.rb: new file.

View file

@ -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