Class: HttpStub::Models::ValueMatcher

Inherits:
Object
  • Object
show all
Defined in:
lib/http_stub/models/value_matcher.rb

Instance Method Summary collapse

Constructor Details

#initialize(stub_value) ⇒ ValueMatcher

Returns a new instance of ValueMatcher.



14
15
16
# File 'lib/http_stub/models/value_matcher.rb', line 14

def initialize(stub_value)
  @stub_value = stub_value
end

Instance Method Details

#match?(actual_value) ⇒ Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/http_stub/models/value_matcher.rb', line 18

def match?(actual_value)
  !!MATCHERS.find { |matcher| matcher.match?(@stub_value, actual_value) }
end

#to_sObject



22
23
24
# File 'lib/http_stub/models/value_matcher.rb', line 22

def to_s
  @stub_value
end