mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/test/unit/testcase.rb (Test::Unit::TestCase.suite): test name
must be string. fixed: [ruby-core:08978] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6cfe0e1224
commit
f4c84d668c
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Oct 3 23:32:27 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/test/unit/testcase.rb (Test::Unit::TestCase.suite): tset name
|
||||
must be string. fixed: [ruby-core:08978]
|
||||
|
||||
Mon Oct 2 23:47:55 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner::COLLECTORS):
|
||||
|
|
|
@ -61,7 +61,7 @@ module Test
|
|||
end
|
||||
if (suite.empty?)
|
||||
catch(:invalid_test) do
|
||||
suite << new(:default_test)
|
||||
suite << new("default_test")
|
||||
end
|
||||
end
|
||||
return suite
|
||||
|
|
Loading…
Add table
Reference in a new issue