Sha256: 26efc667d978d6dd49d3952e365774fc348ac3256e4a38013209cc2c85cdcd65

Contents?: true

Size: 492 Bytes

Versions: 30

Compression:

Stored size: 492 Bytes

Contents

require 'spec_helper'

describe 'expect_json_types optional' do
  it 'should test optional nested hash when exists' do
    mock_get('simple_nested_path')
    get '/simple_nested_path'
    expect_json_types('address.coordinates', optional(lattitude: :float, longitutde: :float))
  end

  it 'should allow optional nested hash' do
    mock_get('simple_path_get')
    get '/simple_path_get'
    expect_json_types('address.coordinates', optional(lattitude: :float, longitutde: :float))
  end
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
airborne-0.2.4 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.2.3 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.2.2 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.2.1 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.2.0 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.20 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.19 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.18 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.17 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.16 spec/airborne/expectations/expect_json_types_optional_spec.rb