Sha256: 1b12c38e20cc8386c9991d639b91c313b743b93fe2ad98b046a8d58e07087874
Contents?: true
Size: 926 Bytes
Versions: 2
Compression:
Stored size: 926 Bytes
Contents
require 'spec_helper' describe Capybara::Session do context 'with rack test driver' do before do @session = TestSessions::RackTest end describe '#driver' do it "should be a rack test driver" do @session.driver.should be_an_instance_of(Capybara::Driver::RackTest) end end describe '#mode' do it "should remember the mode" do @session.mode.should == :rack_test end end describe '#click_link' do it "should use data-method if available" do @session.visit "/with_html" @session.click_link "A link with data-method" @session.body.should == 'The requested object was deleted' end end it_should_behave_like "session" it_should_behave_like "session without javascript support" it_should_behave_like "session with headers support" it_should_behave_like "session with status code support" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
capybara-0.4.0 | spec/session/rack_test_session_spec.rb |
capybara-0.4.0.rc | spec/session/rack_test_session_spec.rb |