mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
8 lines
209 B
Ruby
8 lines
209 B
Ruby
require 'spec_helper'
|
|
|
|
describe Capybara::Selenium::Driver do
|
|
it "should exit with a non-zero exit status" do
|
|
browser = Capybara::Selenium::Driver.new(TestApp).browser
|
|
true.should == false
|
|
end
|
|
end
|