Sha256: e04620d3164b682d2f208966cc0a2e296614d721b37dc64189c4946add4da324

Contents?: true

Size: 728 Bytes

Versions: 25

Compression:

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

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
airborne-0.2.4 spec/airborne/expectations/expect_header_contains_spec.rb
airborne-0.2.3 spec/airborne/expectations/expect_header_contains_spec.rb
airborne-0.2.2 spec/airborne/expectations/expect_header_contains_spec.rb
airborne-0.2.1 spec/airborne/expectations/expect_header_contains_spec.rb
airborne-0.2.0 spec/airborne/expectations/expect_header_contains_spec.rb