1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/spec/driver/remote_culerity_driver_spec.rb
Jonas Nicklas 0ed383238f Init C[ue]lerity driver/session in before(:all)
This way we don't create a crap load of instances
which leads to out-of-memory exceptions.
2010-02-26 01:14:58 +01:00

23 lines
678 B
Ruby

require File.expand_path('../spec_helper', File.dirname(__FILE__))
describe Capybara::Driver::Culerity do
before(:all) do
Capybara.app_host = "http://capybara-testapp.heroku.com"
Capybara.run_server = false
@driver = Capybara::Driver::Culerity.new(TestApp)
end
after(:all) do
Capybara.app_host = nil
Capybara.run_server = true
end
it "should navigate to a fully qualified remote page" do
@driver.visit('http://elabs.se/contact')
@driver.body.should include('Edithouse eLabs AB')
end
it_should_behave_like "driver"
it_should_behave_like "driver with javascript support"
it_should_behave_like "driver with header support"
end