Guest User

Untitled

a guest
Jan 26th, 2018
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. Feature: User signs in
  2.  
  3. Scenario: without registering
  4. Given no user exists with email joao@example.com
  5. When I sign in as "user/wrong password"
  6. Then I should see "Invalid email or password."
  7.  
  8. Scenario: without confirm
  9. Given an user exists with the following information:
  10. | email | password |
  11. | jorge@example.com | thePassword |
  12. When I sign in as "jorge@example.com/thePassword"
  13. Then I should see "You have to confirm your account before continuing."
  14.  
  15. Scenario: incorrect password
  16. Given the following confirmed user:
  17. | email | password |
  18. | joao@example.com | thePassword |
  19. When I sign in as "joao@example.com/wrong password"
  20. Then I should see "Invalid email or password."
  21.  
  22. Scenario: successfull sign in
  23. Given the following confirmed user:
  24. | email | password |
  25. | joao@example.com | thePassword |
  26. When I sign in as "joao@example.com/thePassword"
  27. Then I should see " Signed in successfully."
Add Comment
Please, Sign In to add comment