Method: Mini::Assertions#assert_match
- Defined in:
- lib/mini/test.rb
#assert_match(exp, act, msg = nil) ⇒ Object
104 105 106 107 |
# File 'lib/mini/test.rb', line 104 def assert_match exp, act, msg = nil msg = msg, "Expected #{mu_pp(act)} to match #{mu_pp(exp)}" assert act =~ exp, msg end |