Sha256: 2c9fb037e015b49f859ccf38a1762a7f084d6a2ba54117133a9e4526e9599ac6

Contents?: true

Size: 719 Bytes

Versions: 25

Compression:

Stored size: 719 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(ExpectationNotMetError)
  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(ExpectationNotMetError)
  end
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
airborne-0.3.7 spec/airborne/expectations/expect_header_spec.rb
airborne-0.3.6 spec/airborne/expectations/expect_header_spec.rb
airborne-0.3.5 spec/airborne/expectations/expect_header_spec.rb
hops-airborne-0.2.17 spec/airborne/expectations/expect_header_spec.rb
airborne-0.3.4 spec/airborne/expectations/expect_header_spec.rb
airborne-0.3.3 spec/airborne/expectations/expect_header_spec.rb
airborne-0.3.2 spec/airborne/expectations/expect_header_spec.rb
airborne-0.3.1 spec/airborne/expectations/expect_header_spec.rb
airborne-0.3.0 spec/airborne/expectations/expect_header_spec.rb
hops-airborne-0.2.16 spec/airborne/expectations/expect_header_spec.rb
hops-airborne-0.2.15 spec/airborne/expectations/expect_header_spec.rb
airborne-0.2.13 spec/airborne/expectations/expect_header_spec.rb
airborne-0.2.12 spec/airborne/expectations/expect_header_spec.rb
airborne-0.2.11 spec/airborne/expectations/expect_header_spec.rb
airborne-0.2.10 spec/airborne/expectations/expect_header_spec.rb
airborne-0.2.9 spec/airborne/expectations/expect_header_spec.rb
airborne-0.2.8 spec/airborne/expectations/expect_header_spec.rb
airborne-0.2.7 spec/airborne/expectations/expect_header_spec.rb
airborne-0.2.6 spec/airborne/expectations/expect_header_spec.rb
airborne-0.2.5 spec/airborne/expectations/expect_header_spec.rb