Sha256: 0dc06d786e7f46bdb29f4ad79da2a88818ac9146827c5ae242471d6c36388437
Contents?: true
Size: 1.33 KB
Versions: 50
Compression:
Stored size: 1.33 KB
Contents
Feature: User Resetting Password Resetting my password as an admin user Background: Given a configuration of: """ ActiveAdmin.register Post """ And I am logged out And an admin user "admin@example.com" exists Scenario: Resetting password successfully When I go to the dashboard And I follow "Forgot your password?" When I fill in "Email" with "admin@example.com" And I press "Reset My Password" Then I should see "You will receive an email with instructions about how to reset your password in a few minutes." Scenario: Changing password after resetting Given an admin user "admin@example.com" exists with reset password token "123reset" When I go to the admin password reset form with reset password token "123reset" And I fill in "Password" with "password" And I fill in "Password confirmation" with "password" And I press "Change my password" Then I should see "success" Scenario: Changing password after resetting with errors Given an admin user "admin@example.com" exists with expired reset password token "123reset" When I go to the admin password reset form with reset password token "123reset" And I fill in "Password" with "password" And I fill in "Password confirmation" with "wrong" And I press "Change my password" Then I should see "expired"
Version data entries
50 entries across 50 versions & 2 rubygems