Class: HttpStub::Server::Stub::Match::RegexpValueMatcher

Inherits:
Object
  • Object
show all
Defined in:
lib/http_stub/server/stub/match/regexp_value_matcher.rb

Class Method Summary collapse

Class Method Details

.match?(stub_value, actual_value) ⇒ Boolean

Returns:

  • (Boolean)


8
9
10
# File 'lib/http_stub/server/stub/match/regexp_value_matcher.rb', line 8

def self.match?(stub_value, actual_value)
  stub_value.is_a?(Regexp) && !!stub_value.match(actual_value)
end