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.16.3 features/reset_password.feature
wagn-1.16.2 features/reset_password.feature
wagn-1.16.1 features/reset_password.feature
wagn-1.16.0 features/reset_password.feature
wagn-1.15.7 features/reset_password.feature
wagn-1.15.6 features/reset_password.feature
wagn-1.15.5 features/reset_password.feature
wagn-1.15.4 features/reset_password.feature
wagn-1.15.3 features/reset_password.feature
wagn-1.15.2 features/reset_password.feature
wagn-1.15.1 features/reset_password.feature
wagn-1.15.0 features/reset_password.feature
wagn-1.15.pre2 features/reset_password.feature
wagn-1.15.pre features/reset_password.feature
wagn-1.14.9 features/reset_password.feature
wagn-1.14.8 features/reset_password.feature
wagn-1.14.7 features/reset_password.feature
wagn-1.14.6 features/reset_password.feature
wagn-1.14.5 features/reset_password.feature
wagn-1.14.4 features/reset_password.feature