1 |
efrain |
1 |
@format @format_weeks
|
|
|
2 |
Feature: The current week should be highlighted in the course.
|
|
|
3 |
In order to know which is the current week
|
|
|
4 |
As a user
|
|
|
5 |
I need to see the current week highlighted
|
|
|
6 |
|
|
|
7 |
Scenario: Highlight first week
|
|
|
8 |
Given the following "courses" exist:
|
|
|
9 |
| fullname | shortname | format | coursedisplay | numsections | startdate |
|
|
|
10 |
| Course 1 | C1 | weeks | 0 | 5 | ##yesterday## |
|
|
|
11 |
When I am on the "C1" "Course" page logged in as "admin"
|
|
|
12 |
Then I should see "Current week" in the "#section-1" "css_element"
|
|
|
13 |
|
|
|
14 |
Scenario: Highlight next week
|
|
|
15 |
Given the following "courses" exist:
|
|
|
16 |
| fullname | shortname | format | coursedisplay | numsections | startdate |
|
|
|
17 |
| Course 1 | C1 | weeks | 0 | 5 | ##monday last week## |
|
|
|
18 |
When I am on the "C1" "Course" page logged in as "admin"
|
|
|
19 |
Then I should see "Current week" in the "#section-2" "css_element"
|