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.
44 lines
1.7 KiB
44 lines
1.7 KiB
@format @format_tiles @format_tiles_create_course
|
|
Feature: Create course in format tiles
|
|
As an admin
|
|
I need to be able to create a course in format tiles and set the options
|
|
|
|
Background:
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname | email |
|
|
| teacher1 | Teacher | 1 | teacher1@example.com |
|
|
And the following config values are set as admin:
|
|
| config | value | plugin |
|
|
| enablecompletion | 1 | core |
|
|
| modalmodules | page | format_tiles |
|
|
| modalresources | pdf,html | format_tiles |
|
|
| assumedatastoreconsent | 1 | format_tiles |
|
|
| reopenlastsection | 0 | format_tiles |
|
|
| usejavascriptnav | 1 | format_tiles |
|
|
| jsmaxstoreditems | 0 | format_tiles |
|
|
|
|
@javascript
|
|
Scenario: Latest course announcements are displayed and can be configured
|
|
When I log in as "admin"
|
|
|
|
And I create a course with:
|
|
| Course full name | Create Course Test Course |
|
|
| Course short name | C1 |
|
|
| Number of announcements | 5 |
|
|
| Enable completion tracking | Yes |
|
|
| Format | Tiles format |
|
|
| Number of sections | 10 |
|
|
| Use sub tiles for activities | Yes |
|
|
| Progress on each tile | Show as % in circle |
|
|
|
|
#todo test icon picker and colour picker here?
|
|
|
|
And I am on "Create Course Test Course" course homepage with editing mode on
|
|
And I log out tiles
|
|
|
|
And the following "course enrolments" exist:
|
|
| user | course | role |
|
|
| teacher1 | C1 | editingteacher |
|
|
And I log in as "teacher1"
|
|
And I am on "Create Course Test Course" course homepage with editing mode on
|
|
And I log out tiles
|