You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
827 B
20 lines
827 B
@core @core_user
|
|
Feature: Manually create a user
|
|
In order create a user properly
|
|
As an admin
|
|
I need to be able to add new users and edit their fields.
|
|
|
|
Scenario: Change default language for a new user
|
|
Given I log in as "admin"
|
|
When I navigate to "Users > Accounts > Add a new user" in site administration
|
|
Then I should see "Preferred language"
|
|
|
|
Scenario: Language not displayed when editing an existing user
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname | email |
|
|
| student1 | Student | 1 | student1@example.com |
|
|
When I log in as "admin"
|
|
And I navigate to "Users > Accounts > Browse list of users" in site administration
|
|
And I follow "Student 1"
|
|
And I follow "Edit profile"
|
|
Then I should not see "Preferred language"
|
|
|