Merge pull request #4491 from shuujii/fix-missing-assertions-in-test-t-module.rb

Fix missing assertions in `test/t/module.rb`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-06-05 23:10:36 +09:00
committed by GitHub
+3 -3
View File
@@ -684,8 +684,8 @@ assert('Issue 1467') do
include M1
end
C1.new
C2.new
assert_kind_of(M1, C1.new)
assert_kind_of(M1, C2.new)
end
assert('clone Module') do
@@ -699,7 +699,7 @@ assert('clone Module') do
include M1.clone
end
B.new.foo
assert_true(B.new.foo)
end
assert('Module#module_function') do