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
2012-07-21 16:46:56 -04:00

6 lines
244 B
Ruby

Capybara::SpecHelper.spec '#response_headers' do
it "should return response headers", :requires => [:response_headers] do
@session.visit('/with_simple_html')
@session.response_headers['Content-Type'].should =~ %r(text/html)
end
end