Sha256: 3021bff006746dc551a060e6dfee2759b6679e74025bb0b4d3fa6ad4ecb7c001

Contents?: true

Size: 1.09 KB

Versions: 67

Compression:

Stored size: 1.09 KB

Contents

Feature: Reset password
  In order to be able to recover lost account access
  As an authorized user
  I want to be able to reset my password

  Background:
    # There is a user named Joe User in the test data with the email "joe@user.com"
    # Poor Joe has forgotten his password (which we know to be joe_pass)

  Scenario: Resetting password
    When I go to the homepage
    And I follow "Sign in"
    And I follow "RESET PASSWORD"
    And I enter "joe@user.com" into "*email"
    And I press "Reset my password"
    Then "joe@user.com" should receive an email with subject "reset password for My Wagn"
    
    When I open the email
    And I click the first link in the email
    Then I should see "Joe User"
    
    When I enter "joe_pass_reset" into "*password"
    And I press "Submit"
    Then I should see "encrypted"
    
    When I go to the homepage
    And I follow "Sign out"
    Then I should not see "Joe User"
    
    When I follow "Sign in"
    And I enter "joe@user.com" into "*email"
    And I enter "joe_pass_reset" into "*password"
    And I press "Sign in"
    Then I should see "Joe User"

Version data entries

67 entries across 67 versions & 2 rubygems

Version Path
wagn-1.21.1 features/reset_password.feature
decko-0.2 features/reset_password.feature
decko-0.1 features/reset_password.feature
wagn-1.21.0 features/reset_password.feature
wagn-1.20.4 features/reset_password.feature
wagn-1.20.3 features/reset_password.feature
wagn-1.20.2 features/reset_password.feature
wagn-1.20.1 features/reset_password.feature
wagn-1.20.0 features/reset_password.feature
wagn-1.19.6 features/reset_password.feature
wagn-1.19.5 features/reset_password.feature
wagn-1.19.4 features/reset_password.feature
wagn-1.19.3 features/reset_password.feature
wagn-1.19.2 features/reset_password.feature
wagn-1.19.1 features/reset_password.feature
wagn-1.19.0 features/reset_password.feature
wagn-1.18.6 features/reset_password.feature
wagn-1.18.5 features/reset_password.feature
wagn-1.18.4 features/reset_password.feature
wagn-1.18.3 features/reset_password.feature