1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/lib/capybara/spec/session/headers.rb

9 lines
279 B
Ruby
Raw Normal View History

2016-03-07 19:52:19 -05:00
# frozen_string_literal: true
2018-02-28 19:11:41 -05:00
Capybara::SpecHelper.spec '#response_headers' do
2016-10-04 14:10:29 -04:00
it "should return response headers", requires: [:response_headers] do
@session.visit('/with_simple_html')
2018-02-28 19:11:41 -05:00
expect(@session.response_headers['Content-Type']).to match %r{text/html}
end
end