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.
14 lines
698 B
14 lines
698 B
@block @block_myprofile
|
|
Feature: The logged in user block allows users to view their profile information in on the dashboard
|
|
In order to enable the logged in user block on the dashboard
|
|
As a user
|
|
I can add the logged in user block to a the dashboard and view my information
|
|
|
|
Scenario: View the logged in user block by a user on the dashboard
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname | email |
|
|
| teacher1 | Teacher | One | teacher1@example.com |
|
|
And I log in as "teacher1"
|
|
And I press "Customise this page"
|
|
When I add the "Logged in user" block
|
|
Then I should see "Teacher One" in the "Logged in user" "block"
|
|
|