Class: Riot::MatchesMacro

Inherits:
AssertionMacro show all
Defined in:
lib/riot/assertion_macros/matches.rb

Overview

Asserts that the result of the test equals matches against the proved expression

asserts("test") { "12345" }.matches(/\d+/)
should("test") { "12345" }.matches(/\d+/)

You can also test that the result does not match your regex:

denies("test") { "hello, world"}.matches(/\d+/)

Instance Attribute Summary

Attributes inherited from AssertionMacro

#file, #line

Instance Method Summary collapse

Methods inherited from AssertionMacro

default, #error, #expected_message, expects_exception!, #expects_exception?, #fail, #new_message, #pass, register, #should_have_message

Instance Method Details

#devaluate(actual, expected) ⇒ Object



22
23
24
25
26
27
28
29
# File 'lib/riot/assertion_macros/matches.rb', line 22

def devaluate(actual, expected)
  expected = %r[#{Regexp.escape(expected)}] if expected.kind_of?(String)
  if actual.to_s =~ expected
    fail(expected_message(expected).not_to_match(actual))
  else
    pass(new_message.does_not_match(expected))
  end
end

#evaluate(actual, expected) ⇒ Object



13
14
15
16
17
18
19
20
# File 'lib/riot/assertion_macros/matches.rb', line 13

def evaluate(actual, expected)
  expected = %r[#{Regexp.escape(expected)}] if expected.kind_of?(String)
  if actual.to_s =~ expected
    pass(new_message.matches(expected))
  else
    fail(expected_message(expected).to_match(actual))
  end
end