Merge pull request #2312 from take-cheeze/kind_of

Use `assert_kind_of` instead in `Proc#inspect` test.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-05-25 22:34:40 +09:00
+1 -1
View File
@@ -10,7 +10,7 @@ end
assert('Proc#inspect') do
ins = Proc.new{}.inspect
assert_true ins.kind_of? String
assert_kind_of String, ins
end
assert('Proc#lambda?') do