Sha256: d02beeced9eff205491d08b371ba0c98d420b07ee48262b817bee18fdea045b5
Contents?: true
Size: 674 Bytes
Versions: 16
Compression:
Stored size: 674 Bytes
Contents
require 'spec_helper' describe 'expect header' do it 'should find exact match for header content' do mock_get('simple_get', {'Content-Type' => 'application/json'}) get '/simple_get' expect_header(:content_type, 'application/json') end it 'should find exact match for header content' do mock_get('simple_get', {'Content-Type' => 'json'}) get '/simple_get' expect{expect_header(:content_type, 'application/json')}.to raise_error end it 'should ensure correct headers are present' do mock_get('simple_get', {'Content-Type' => 'application/json'}) get '/simple_get' expect{expect_header(:foo, 'bar')}.to raise_error end end
Version data entries
16 entries across 16 versions & 1 rubygems