Class: HttpStub::Models::StringValueMatcher

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

Instance Method Summary collapse

Constructor Details

#initialize(stub_value) ⇒ StringValueMatcher

Returns a new instance of StringValueMatcher.



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

def initialize(stub_value)
  @stub_match_value = stub_value ? stub_value.to_s : stub_value
end

Instance Method Details

#match?(actual_value) ⇒ Boolean

Returns:

  • (Boolean)


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

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

#to_sObject



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

def to_s
  @stub_match_value
end