20 lines
619 B
Gherkin
20 lines
619 B
Gherkin
Feature: User Management
|
|
Actions like creation, edit and deletion of users
|
|
|
|
Scenario: A user with permissions can create a user
|
|
Given I am logged in
|
|
And I go to the user administration screen
|
|
When I create a user
|
|
Then that user should appear in the user list
|
|
|
|
Scenario: Update a user
|
|
Given I am logged in
|
|
And I go to the user administration screen
|
|
When I update a user
|
|
Then that user should show the updated value
|
|
|
|
Scenario: Successful delete of a user
|
|
Given I am logged in
|
|
And I go to the user administration screen
|
|
When I delete a user
|
|
Then the user should not show in the user list |