39 lines
1.6 KiB
Gherkin
39 lines
1.6 KiB
Gherkin
@format @format_singleactivity
|
|
Feature: Courses can be created in Single Activity mode
|
|
In order to create a single activity course
|
|
As a manager
|
|
I need to create courses and set default values on them
|
|
|
|
Scenario: Create a course as a custom course creator
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname | email |
|
|
| kevin | Kevin | the | kevin@example.com |
|
|
And the following "roles" exist:
|
|
| shortname | name | archetype |
|
|
| creator | Creator | |
|
|
And the following "system role assigns" exist:
|
|
| user | role | contextlevel |
|
|
| kevin | creator | System |
|
|
And I log in as "admin"
|
|
And I set the following system permissions of "Creator" role:
|
|
| capability | permission |
|
|
| moodle/course:create | Allow |
|
|
| moodle/course:update | Allow |
|
|
| moodle/course:manageactivities | Allow |
|
|
| moodle/course:viewparticipants | Allow |
|
|
| moodle/role:assign | Allow |
|
|
| mod/quiz:addinstance | Allow |
|
|
And I log out
|
|
And I log in as "kevin"
|
|
And I am on site homepage
|
|
When I press "Add a new course"
|
|
And I set the following fields to these values:
|
|
| Course full name | My first course |
|
|
| Course short name | myfirstcourse |
|
|
| Format | Single activity format |
|
|
And I press "Update format"
|
|
Then I should see "Quiz" in the "Type of activity" "field"
|
|
And I should not see "Forum" in the "Type of activity" "field"
|
|
And I press "Save and display"
|
|
And I should see "Adding a new Quiz"
|