2010-09-17 19:56:32 -04:00
|
|
|
require 'spec_helper'
|
2009-11-14 04:44:46 -05:00
|
|
|
|
2009-11-16 16:02:16 -05:00
|
|
|
describe Capybara::Session do
|
2009-11-14 04:44:46 -05:00
|
|
|
context 'with selenium driver' do
|
|
|
|
before do
|
2010-09-07 12:16:19 -04:00
|
|
|
@session = TestSessions::Selenium
|
2009-11-14 04:44:46 -05:00
|
|
|
end
|
2009-12-11 16:40:23 -05:00
|
|
|
|
2009-11-14 04:44:46 -05:00
|
|
|
describe '#driver' do
|
2009-12-11 16:40:23 -05:00
|
|
|
it "should be a selenium driver" do
|
2011-04-11 01:24:00 -04:00
|
|
|
@session.driver.should be_an_instance_of(Capybara::Selenium::Driver)
|
2009-11-14 04:44:46 -05:00
|
|
|
end
|
|
|
|
end
|
2009-12-11 16:40:23 -05:00
|
|
|
|
2009-11-14 04:44:46 -05:00
|
|
|
describe '#mode' do
|
|
|
|
it "should remember the mode" do
|
|
|
|
@session.mode.should == :selenium
|
|
|
|
end
|
|
|
|
end
|
2009-12-11 16:40:23 -05:00
|
|
|
|
2010-02-18 15:53:10 -05:00
|
|
|
it_should_behave_like "session"
|
2009-12-09 15:43:40 -05:00
|
|
|
it_should_behave_like "session with javascript support"
|
2010-02-18 15:53:10 -05:00
|
|
|
it_should_behave_like "session without headers support"
|
2010-06-06 23:14:40 -04:00
|
|
|
it_should_behave_like "session without status code support"
|
2009-11-14 04:44:46 -05:00
|
|
|
end
|
|
|
|
end
|