Sha256: d23d177055265931f1ce4842656efb69ef87bcd2aac05426fd42e3ca2a5f09fc

Contents?: true

Size: 252 Bytes

Versions: 3

Compression:

Stored size: 252 Bytes

Contents

module Pact
  class UnexpectedIndex

    def == other
      other.is_a? UnexpectedIndex
    end

    def to_s
      '<index not to exist>'
    end

    def as_json options = {}
      to_s
    end

    def to_json opts = {}
      to_s
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pact-1.0.34 lib/pact/matchers/unexpected_index.rb
pact-1.0.33 lib/pact/matchers/unexpected_index.rb
pact-1.0.32 lib/pact/matchers/unexpected_index.rb