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_selenium_driver_spec.rb
Jonas Nicklas 0bf8796829 Temporarily don't run remote selenium specs
I'm experiencing a problem with this causing some
unrelated specs to hang. Until I figure out why
I'm going to disable this. I've spent way too much
time on this already. Need to be pragmatic.
2010-09-26 17:58:17 +02:00

16 lines
388 B
Ruby

require 'spec_helper'
describe Capybara::Driver::Selenium do
before do
#Capybara.app_host = "http://capybara-testapp.heroku.com"
@driver = TestSessions::Selenium.driver
end
after do
Capybara.app_host = nil
end
it_should_behave_like "driver"
it_should_behave_like "driver with javascript support"
it_should_behave_like "driver without status code support"
end