Skip to content

Instantly share code, notes, and snippets.

@xirukitepe
Created November 7, 2012 06:57
Show Gist options
  • Save xirukitepe/4029912 to your computer and use it in GitHub Desktop.
Save xirukitepe/4029912 to your computer and use it in GitHub Desktop.
Example test with capybara and factory girl
describe "home page" do
it "displays the user's username after successful login" do
user = FactoryGirl.create(:user, :username => "jdoe", :password => "secret")
visit "/login"
fill_in "Username", :with => "jdoe"
fill_in "Password", :with => "secret"
click_button "Log in"
page.should have_selector(".header .username", :text => "jdoe")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment