Skip to content

Instantly share code, notes, and snippets.

@xuncheng
Created July 22, 2013 06:17
Show Gist options
  • Save xuncheng/6051655 to your computer and use it in GitHub Desktop.
Save xuncheng/6051655 to your computer and use it in GitHub Desktop.
user sign in using macors
def sign_in(a_user=nil)
user = a_user || Fabricate(:user)
visit signin_path
fill_in "Email", with: user.email
fill_in "Password", with: user.password
click_button "Sign in"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment