mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 05:06:46 +10:00
24 lines
613 B
Gherkin
24 lines
613 B
Gherkin
@admin
|
|
Feature: Admin Users
|
|
Background:
|
|
Given I sign in as an admin
|
|
And system has users
|
|
|
|
Scenario: On Admin Users
|
|
Given I visit admin users page
|
|
Then I should see all users
|
|
|
|
Scenario: Edit user and change username to non ascii char
|
|
When I visit admin users page
|
|
And Click edit
|
|
And Input non ascii char in username
|
|
And Click save
|
|
Then See username error message
|
|
And Not changed form action url
|
|
|
|
Scenario: Edit my user attributes
|
|
Given I visit admin users page
|
|
And click edit on my user
|
|
When I submit modified user
|
|
Then I see user attributes changed
|