Sha256: df514397bec8e1a1c19adc16f81c1cdc39d520fe49c2d69c2737b894484449ea
Contents?: true
Size: 433 Bytes
Versions: 5
Compression:
Stored size: 433 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 end end
Version data entries
5 entries across 5 versions & 1 rubygems