Guest User

Untitled

a guest
Jul 23rd, 2018
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. Feature: Registration
  2. In order to use My Great Application
  3. As a user
  4. I want to be able to register
  5.  
  6. Scenario: 'Standard Registration'
  7. Given I am not currently logged in
  8. When I am on the signup page
  9. Then I should see "Sign Up"
  10. And I fill in "Name (required)" with "Mickey Dolenz"
  11. And I fill in "Email (required)" with "mickey@monkees.com"
  12. And I fill in "Password (required)" with "password"
  13. And I fill in "Password confirmation" with "password"
  14. And I press "Register"
  15. Then I should see "Sign Up - Confirm Your Account"
  16. Then I should be on the registration thank you page
  17. Then "mickey@monkees.com" should receive an email
  18. When I open the email
  19. Then I should see "Confirm my account" in the email body
  20. When I follow "Confirm my account" in the email
  21. Then I should be on the welcome page
  22. And I should see "Welcome to the Great Application"
  23.  
  24. Scenario: 'Accepting an invitation'
  25. Given I am not currently logged in
  26. And the "Boys and Girls Club" invites "mickey@monkees.com" to join
  27. Then "mickey@monkees.com" should receive an email
  28. When I open the email
  29. Then I should see "Accept Invitation" in the email body
  30. When I follow "Accept Invitation" in the email
  31. Then I should be on the signup page
  32. Then I should see "Sign Up"
  33. And I fill in "Name (required)" with "Mickey Dolenz"
  34. And the "Email (required)" field should contain "mickey@monkees.com"
  35. And I fill in "Password (required)" with "password"
  36. And I fill in "Password confirmation" with "password"
  37. And I press "Register"
  38. Then the account "mickey@monkees.com" should be "activated"
  39. Then I should be on the accept/decline invitation page
  40. And I should see "Join the Boys and Girls Club"
Add Comment
Please, Sign In to add comment