Sha256: 3c9e8db9a6d20ea2e76f8527d4ad2f29b182f34ad20d0e8c569410149d9ba14c

Contents?: true

Size: 482 Bytes

Versions: 16

Compression:

Stored size: 482 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

16 entries across 16 versions & 1 rubygems

Version Path
airborne-0.1.15 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.14 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.13 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.12 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.11 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.10 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.9 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.8 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.7 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.6 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.5 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.4 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.3 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.2 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.1.1 spec/airborne/expectations/expect_json_types_optional_spec.rb
airborne-0.0.23 spec/airborne/expectations/expect_json_types_optional_spec.rb