class HttpStub::Server::Stub::Match::StringValueMatcher

Constants

MATCHERS

Public Class Methods

match?(stub_value, actual_value) click to toggle source
# File lib/http_stub/server/stub/match/string_value_matcher.rb, line 14
def self.match?(stub_value, actual_value)
  !!MATCHERS.find { |matcher| matcher.match?(stub_value, actual_value) }
end