class Pact::Provider::PactVerification

Attributes

consumer_name[R]
ref[R]
uri[R]

Public Class Methods

new(consumer_name, uri, ref) click to toggle source
# File lib/pact/provider/pact_verification.rb, line 4
def initialize consumer_name, uri, ref
  @consumer_name = consumer_name
  @uri = uri
  @ref = ref
end

Public Instance Methods

==(other) click to toggle source
# File lib/pact/provider/pact_verification.rb, line 10
def == other
  other.is_a?(PactVerification) &&
    consumer_name == other.consumer_name &&
    uri == other.uri &&
    ref == other.ref
end