1 |
efrain |
1 |
@block @block_calendar_upcoming
|
|
|
2 |
Feature: View a upcoming site event on the dashboard
|
|
|
3 |
In order to view a site event
|
|
|
4 |
As a student
|
|
|
5 |
I can view the event in the upcoming events block
|
|
|
6 |
Background:
|
|
|
7 |
Given the following "users" exist:
|
|
|
8 |
| username | firstname | lastname | email | idnumber |
|
|
|
9 |
| student1 | Student | 1 | student1@example.com | S1 |
|
|
|
10 |
|
|
|
11 |
@javascript
|
|
|
12 |
Scenario: View a site event in the upcoming events block on the dashboard
|
|
|
13 |
Given I log in as "admin"
|
|
|
14 |
And I create a calendar event with form data:
|
|
|
15 |
| id_eventtype | Site |
|
|
|
16 |
| id_name | My Site Event |
|
|
|
17 |
And I log out
|
|
|
18 |
When I log in as "student1"
|
|
|
19 |
And I hover over today in the mini-calendar block
|
|
|
20 |
Then I should see "My Site Event"
|