mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
844bd776ae
This prevents most of all Selenium from opening dozens of browser windows.
26 lines
715 B
Ruby
26 lines
715 B
Ruby
require File.expand_path('../spec_helper', File.dirname(__FILE__))
|
|
|
|
describe Capybara::Session do
|
|
context 'with culerity driver' do
|
|
before(:all) do
|
|
@session = TestSessions::Culerity
|
|
end
|
|
|
|
describe '#driver' do
|
|
it "should be a culerity driver" do
|
|
@session.driver.should be_an_instance_of(Capybara::Driver::Culerity)
|
|
end
|
|
end
|
|
|
|
describe '#mode' do
|
|
it "should remember the mode" do
|
|
@session.mode.should == :culerity
|
|
end
|
|
end
|
|
|
|
it_should_behave_like "session"
|
|
it_should_behave_like "session with javascript support"
|
|
it_should_behave_like "session with headers support"
|
|
it_should_behave_like "session with status code support"
|
|
end
|
|
end
|