Skip to content

Instantly share code, notes, and snippets.

@tomtt
Created March 22, 2009 13:50
Show Gist options
  • Save tomtt/83168 to your computer and use it in GitHub Desktop.
Save tomtt/83168 to your computer and use it in GitHub Desktop.
Given /^I am logged in$/ do
@me_user ||= Factory.create(:user)
visit login_path
fill_in("email_address", :with => @me_user.email_address)
fill_in("password", :with => @me_user.password)
click_button("Log in")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment