Sha256: 682b4b1622c0fa528463ecf0ffe81ddbbdff94df578a5c6cd0e1f0619891f90a

Contents?: true

Size: 683 Bytes

Versions: 16

Compression:

Stored size: 683 Bytes

Contents

require 'spec_helper'

describe 'expect header contains' do

  it 'should ensure partial header match exists' do
    mock_get('simple_get', {'Content-Type' => 'application/json'})
    get '/simple_get'
    expect_header_contains(:content_type, 'json')
  end

  it 'should ensure header is present' do
    mock_get('simple_get', {'Content-Type' => 'application/json'})
    get '/simple_get'
    expect{expect_header_contains(:foo, 'bar')}.to raise_error
  end

  it 'should ensure partial header is present' do
    mock_get('simple_get', {'Content-Type' => 'application/json'})
    get '/simple_get'
    expect{expect_header_contains(:content_type, 'bar')}.to raise_error
  end
  
end

Version data entries

16 entries across 16 versions & 1 rubygems

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