-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add acceptance test for creating a user with a custom display name
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
- Loading branch information
Showing
3 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
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
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
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,13 @@ | ||
Feature: settings-users | ||
|
||
Scenario: create a new user with a custom display name | ||
Given I am logged in as the admin | ||
And I open the User settings | ||
When I click the New user button | ||
And I see that the new user form is shown | ||
And I set the user name for the new user to "test" | ||
And I set the display name for the new user to "Test display name" | ||
And I set the password for the new user to "123456acb" | ||
And I create the new user | ||
Then I see that the list of users contains the user "test" | ||
And I see that the display name for the user "test" is "Test display name" |