rename assert_includes to assert_include

parent d8d18971
......@@ -79,7 +79,7 @@ def assert_nil(obj, msg = nil)
assert_true(obj.nil?, msg, diff)
end
def assert_includes(collection, obj, msg = nil)
def assert_include(collection, obj, msg = nil)
msg = "Expected #{collection.inspect} to include #{obj.inspect}" unless msg
diff = " Collection: #{collection.inspect}\n" +
" Object: #{obj.inspect}"
......
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