Sha256: fbe83539f00503093c5395ddc3dfd434675e4bb2e96165d3fd72168ba5c6700a
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 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) end describe '#driver' do it "should be a mechanize driver" do @session.driver.should be_an_instance_of(Capybara::Driver::Mechanize) 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 == 'The requested object was deleted' end end # Pending: Still 18 failing tests here (result is 705 examples, 18 failures, instead of 384 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
capybara-mechanize-0.2.6 | spec/session/remote_mechanize_spec.rb |