Class: Matchi::Matcher::Match
Overview
*Regular expressions* matcher.
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(expected) ⇒ Match
constructor
Initialize the matcher with an instance of Regexp.
-
#matches? ⇒ Boolean
Boolean comparison between the actual value and the expected value.
Methods inherited from Base
Constructor Details
#initialize(expected) ⇒ Match
Initialize the matcher with an instance of Regexp.
15 16 17 18 |
# File 'lib/matchi/matcher/match.rb', line 15 def initialize(expected) super() @expected = expected end |
Instance Method Details
#matches? ⇒ Boolean
Boolean comparison between the actual value and the expected value.
30 31 32 |
# File 'lib/matchi/matcher/match.rb', line 30 def matches?(*, **) expected.match?(yield) end |