Sha256: 3d626552ba0fdbb989809dc6084ad450747a466c4de15d99f4185bef8fb9c06d
Contents?: true
Size: 571 Bytes
Versions: 37
Compression:
Stored size: 571 Bytes
Contents
shared_examples_for "session with headers support" do describe '#response_headers' do it "should return response headers" do @session.visit('/with_simple_html') @session.response_headers['Content-Type'].should =~ %r(text/html) end end end shared_examples_for "session without headers support" do describe "#response_headers" do before{ @session.visit('/with_simple_html') } it "should raise an error" do running { @session.response_headers }.should raise_error(Capybara::NotSupportedByDriverError) end end end
Version data entries
37 entries across 37 versions & 8 rubygems