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

9 lines
229 B
Ruby
Raw Normal View History

require 'spec_helper'
describe Capybara::Selenium::Driver do
it "should exit with a non-zero exit status when assertion fails" do
browser = Capybara::Selenium::Driver.new(TestApp).browser
true.should == true
end
end