summaryrefslogtreecommitdiff
path: root/lib/minitest
diff options
context:
space:
mode:
Diffstat (limited to 'lib/minitest')
-rw-r--r--lib/minitest/unit.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/minitest/unit.rb b/lib/minitest/unit.rb
index 707ec5e055..9d9439c552 100644
--- a/lib/minitest/unit.rb
+++ b/lib/minitest/unit.rb
@@ -282,7 +282,7 @@ module MiniTest
def assert_match matcher, obj, msg = nil
msg = message(msg) { "Expected #{mu_pp matcher} to match #{mu_pp obj}" }
assert_respond_to obj, :"=~"
- matcher = Regexp.new Regexp.escape matcher if String === matcher and String === obj
+ matcher = Regexp.new Regexp.escape matcher if String === matcher and obj.respond_to?(:to_str)
assert matcher =~ obj, msg
end
@@ -583,7 +583,7 @@ module MiniTest
def refute_match matcher, obj, msg = nil
msg = message(msg) {"Expected #{mu_pp matcher} to not match #{mu_pp obj}"}
assert_respond_to obj, :"=~"
- matcher = Regexp.new Regexp.escape matcher if String === matcher and String === obj
+ matcher = Regexp.new Regexp.escape matcher if String === matcher and obj.respond_to?(:to_str)
refute matcher =~ obj, msg
end