mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
6 lines
244 B
Ruby
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
|