Guest User

Untitled

a guest
Jan 20th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. it 'registered users should be able to sign in', :js => true do
  2. user = Factory(:user)
  3. puts user.email
  4. puts user.password
  5.  
  6. visit new_user_session_path
  7. fill_in 'user[email]', :with => user.email
  8. fill_in 'user[password]', :with => user.password
  9. click_link 'Submit'
  10. end
Add Comment
Please, Sign In to add comment