1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/spec/fixtures/selenium_driver_rspec_success.rb

10 lines
300 B
Ruby
Raw Normal View History

2016-03-07 19:52:19 -05:00
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Capybara::Selenium::Driver do
2011-08-22 05:32:35 -04:00
it "should exit with a zero exit status" do
browser = Capybara::Selenium::Driver.new(TestApp, browser: (ENV['SELENIUM_BROWSER'] || :firefox).to_sym).browser
expect(true).to eq(true)
end
end