You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 27, 2020. It is now read-only.
Feature: PWR2 - Users CRUD
As a PWR2 project Admin
I want to create/edit/delete users
To allow them to use the system
Background:
Given I'm logged into PWR2
And As "Superadmin"Scenario: Create userGiven I'm on the create user form
When I save the user data
Then I should see a success message
And The saved user data
Scenario: Edit userGiven I'm on the edit user form
And edit the user data
When I save the user data
Then I should see a success message
And The edited user data
Scenario: Delete userGiven A user exists
When I press the delete button and confirm the action
Then I should see a success message
And The user should be deleted from the database