Sha256: 893fcd3d65768ff4747ec26af468b5b586cafe828e10fcd7c824c62ddbf7ae57

Contents?: true

Size: 905 Bytes

Versions: 16

Compression:

Stored size: 905 Bytes

Contents

require 'spec_helper'

describe 'expect_json regex' do

	it 'should test against regex' do
		mock_get('simple_get')
		get '/simple_get'
		expect_json({name: regex("^A")})
	end

	it 'should raise an error if regex does not match' do
		mock_get('simple_get')
		get '/simple_get'
		expect{expect_json({name: regex("^B")})}.to raise_error
	end

	it 'should allow regex(Regexp) to be tested against a path' do
		mock_get('simple_nested_path')
		get '/simple_nested_path'
		expect_json('address.city', regex("^R") )
	end

	it 'should allow testing regex against numbers directly' do
		mock_get('simple_nested_path')
		get '/simple_nested_path'
		expect_json('address.coordinates.lattitude', regex("^3") )
	end

	it 'should allow testing regex against numbers in the hash' do
		mock_get('simple_nested_path')
		get '/simple_nested_path'
		expect_json('address.coordinates', {lattitude: regex("^3")} )
	end
	
end

Version data entries

16 entries across 16 versions & 1 rubygems

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