Sha256: dde7e2cacdb02731c2fe4d1489b41aadcbc0a782adc09ead1882b164b7ea61c1

Contents?: true

Size: 457 Bytes

Versions: 25

Compression:

Stored size: 457 Bytes

Contents

require 'spec_helper'

describe 'expect_json_keys with path' do
  it 'should ensure json keys with path' do
    mock_get('simple_nested_path')
    get '/simple_nested_path', {}
    expect_json_keys('address', [:street, :city])
  end

  it 'should fail when keys are missing with path' do
    mock_get('simple_nested_path')
    get '/simple_nested_path', {}
    expect { expect_json_keys('address', [:bad]) }.to raise_error(ExpectationNotMetError)
  end
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
airborne-0.2.4 spec/airborne/expectations/expect_json_keys_path_spec.rb
airborne-0.2.3 spec/airborne/expectations/expect_json_keys_path_spec.rb
airborne-0.2.2 spec/airborne/expectations/expect_json_keys_path_spec.rb
airborne-0.2.1 spec/airborne/expectations/expect_json_keys_path_spec.rb
airborne-0.2.0 spec/airborne/expectations/expect_json_keys_path_spec.rb