Sha256: 8c0091865b0f9ce85d62bad0f062a4fc15ea97cd0485a2f4710d616cee5460e0
Contents?: true
Size: 1.24 KB
Versions: 9
Compression:
Stored size: 1.24 KB
Contents
require 'spec_helper' describe Capybara::Session do context 'with remote mechanize driver' do before(:each) do Capybara.app_host = REMOTE_TEST_URL end after(:each) do Capybara.app_host = nil end before do @session = Capybara::Session.new(:mechanize) @session.driver.options[:respect_data_method] = true end describe '#driver' do it "should be a mechanize driver" do @session.driver.should be_an_instance_of(Capybara::Mechanize::Driver) end end describe '#mode' do it "should remember the mode" do @session.mode.should == :mechanize 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 include('The requested object was deleted') end end # Pending: Still 16 failing tests here (result is 706 examples, 16 failures, instead of 385 examples) # 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
9 entries across 9 versions & 3 rubygems