Evaluated each assert line without a replacement test specified.

This commit is contained in:
Jim Weirich
2010-09-27 13:38:50 -04:00
parent 012cb20bb3
commit 17fb071814
13 changed files with 53 additions and 47 deletions

View File

@@ -29,8 +29,8 @@ class AboutScope < EdgeCase::Koan
assert_equal __(:jims_dog), fido.identify
assert_equal __(:joes_dog), rover.identify
assert_not_equal fido.class, rover.class
assert_not_equal Jims::Dog, Joes::Dog
assert_equal __(true), fido.class != rover.class
assert_equal __(true), Jims::Dog != Joes::Dog
end
# ------------------------------------------------------------------