Created
September 24, 2012 13:18
-
-
Save pnegri/3775907 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'test_helper' | |
describe "Feature: Search on Google" do | |
before do | |
Capybara.run_server = false | |
Capybara.current_driver = :selenium | |
Capybara.app_host = 'http://www.google.com/' | |
end | |
it "must return results for futebol" do | |
visit "/" | |
page.text.must_include "Pesquisar" | |
fill_in 'q', :with => 'futebol' | |
# page.text.must_include "futebol ao vivo" | |
assert page.has_content? "futebol ao vivo" | |
# page.must have_content("futebol ao vivo") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment