* lib/minitest/unit.rb (MiniTest::Assertions#assert_instance_of):
typo fixed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20800 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
879d8aa079
commit
d85760abff
@ -7,6 +7,9 @@ Tue Dec 16 22:15:17 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|||||||
* lib/minitest/unit.rb (MiniTest::Assertions#assert_instance_of):
|
* lib/minitest/unit.rb (MiniTest::Assertions#assert_instance_of):
|
||||||
should assert by instance_of?, not ===. [ruby-dev:37458]
|
should assert by instance_of?, not ===. [ruby-dev:37458]
|
||||||
|
|
||||||
|
* lib/minitest/unit.rb (MiniTest::Assertions#assert_instance_of):
|
||||||
|
typo fixed.
|
||||||
|
|
||||||
Tue Dec 16 21:59:29 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
Tue Dec 16 21:59:29 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* lib/test/unit.rb (Test::Unit.setup_argv): ALT_SEPARATOR support.
|
* lib/test/unit.rb (Test::Unit.setup_argv): ALT_SEPARATOR support.
|
||||||
|
@ -104,7 +104,7 @@ module MiniTest
|
|||||||
msg = message(msg) { "Expected #{mu_pp(obj)} to be an instance of #{cls}, not #{obj.class}" }
|
msg = message(msg) { "Expected #{mu_pp(obj)} to be an instance of #{cls}, not #{obj.class}" }
|
||||||
flip = (Module === obj) && ! (Module === cls) # HACK for specs
|
flip = (Module === obj) && ! (Module === cls) # HACK for specs
|
||||||
obj, cls = cls, obj if flip
|
obj, cls = cls, obj if flip
|
||||||
assert obj.instance_of?(obj), msg
|
assert obj.instance_of?(cls), msg
|
||||||
end
|
end
|
||||||
|
|
||||||
def assert_kind_of cls, obj, msg = nil # TODO: merge with instance_of
|
def assert_kind_of cls, obj, msg = nil # TODO: merge with instance_of
|
||||||
|
Loading…
x
Reference in New Issue
Block a user