Unverified Commit 2847692d authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

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

Fix missing assertions in `test/t/module.rb`
parents 913a148d dc1905e1
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment