Sha256: 3266ba7d24f1be58801798e24cc76cfb713db92114312a4d81cd6fed41ad74e9

Contents?: true

Size: 759 Bytes

Versions: 4

Compression:

Stored size: 759 Bytes

Contents

RSpec::Matchers.define :a_postmark_json do |string|
  def postmark_key?(key)
    key == ::Postmark::Inflector.to_postmark(key)
  end

  def postmark_object?(obj)
    case obj
    when Hash
      return false unless obj.keys.all? { |k| postmark_key?(k) }
      return false unless obj.values.all? { |v| postmark_object?(v) }
    when Array
      return false unless obj.all? { |v| postmark_object?(v) }
    end

    true
  end

  def postmark_json?(str)
    return false unless str.is_a?(String)

    json = Postmark::Json.decode(str)
    postmark_object?(json)
  rescue
    false
  end

  match do |actual|
    postmark_json?(actual)
  end
end

RSpec::Matchers.define :json_representation_of do |x|
  match { |actual| Postmark::Json.decode(actual) == x }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
postmark-1.18.0 spec/support/custom_matchers.rb
postmark-1.17.0 spec/support/custom_matchers.rb
postmark-1.16.0 spec/support/custom_matchers.rb
postmark-1.15.0 spec/support/custom_matchers.rb