Sha256: 072fd5c51276b5954017b7bc7e5fc0f898793a3ad41e13eba96fb07e1bcc4b13

Contents?: true

Size: 1.39 KB

Versions: 1

Compression:

Stored size: 1.39 KB

Contents

Fature: Password Reset
  In order to sign in even if he forgot his password
  A user
  Should be able to reset it
  
    Scenario: User is not signed up
      Given there is no user with "email@person.com"
      When I request password reset link to be sent to "email@person.com"
      Then I should see "Unknown email"
  
    Scenario: User requests password reset
      Given I am signed up and confirmed as "email@person.com/password"
      When I request password reset link to be sent to "email@person.com"
      Then I should see "instructions for changing your password"
      And a password reset message should be sent to "email@person.com"
      
    Scenario: User updated his password and types wrong confirmation
      Given I am signed up and confirmed as "email@person.com/password"
      When I follow the password reset link sent to "email@person.com"
      And I update my password with "newpassword/wrongconfirmation"
      Then I should see error messages
      And I should not be signed in      
      
    Scenario: User updates his password
      Given I am signed up and confirmed as "email@person.com/password"
      When I follow the password reset link sent to "email@person.com"
      And I update my password with "newpassword/newpassword"
      Then I should be signed in
      When I sign out
      And I sign in as "email@person.com/newpassword"
      Then I should be signed in
      

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thoughtbot-clearance-0.4.8 generators/clearance_features/templates/features/password_reset.feature