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.
17 lines
516 B
17 lines
516 B
|
5 years ago
|
Feature: User check after installation
|
||
|
|
|
||
|
|
Scenario: Check admin information
|
||
|
|
Given I am a platform administrator
|
||
|
|
And I am on "/main/admin/user_list.php"
|
||
|
|
# admin@example.com was set during installation in actionInstall.feature
|
||
|
|
Then I should see "admin@example.com"
|
||
|
|
Then I follow "John"
|
||
|
|
Then I should see "John Doe"
|
||
|
|
|
||
|
|
Scenario: Check anon information
|
||
|
|
Given I am a platform administrator
|
||
|
|
And I am on "/main/admin/user_list.php"
|
||
|
|
Then I should see "anon"
|
||
|
|
Then I should see "anon"
|
||
|
|
|