forked from Sylius/Sylius
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Behat][Admin][Shop] Change shop user password scenario
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
features/user/managing_users/changing_shop_user_password.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@managing_users | ||
Feature: Changing shop user password | ||
In order to modify shop user credentials | ||
As an Administrator | ||
I want to be able to change shop user password | ||
|
||
Background: | ||
Given there is a user "kibsoon@example.com" identified by "goodGuy" | ||
And I am logged in as an administrator | ||
|
||
@ui @todo | ||
Scenario: Changing password of shop user | ||
When I change user "kibsoon@example.com" password to "veryGoodGuy" | ||
Then I should be notified that it has been successfully edited | ||
And I should be able to log in as "kibsoon@example.com" with "veryGoodGuy" password |