blob: 7f503cf923584e25537549aa4d55d537e110415e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|