forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'MDL-49595' of https://github.com/rlorenzo/moodle
- Loading branch information
Showing
2 changed files
with
59 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
@core @core_backup | ||
Feature: Option to include groups and groupings when importing a course to another course | ||
In order to import a course to another course with groups and groupings | ||
As a teacher | ||
I need an option to include groups and groupings when importing a course to another course | ||
|
||
Background: | ||
Given the following "courses" exist: | ||
| fullname | shortname | | ||
| Course 1 | C1 | | ||
| Course 2 | C2 | | ||
And the following "users" exist: | ||
| username | firstname | lastname | email | | ||
| teacher1 | Teacher | 1 | teacher1@asd.com | | ||
And the following "course enrolments" exist: | ||
| user | course | role | | ||
| teacher1 | C1 | editingteacher | | ||
| teacher1 | C2 | editingteacher | | ||
And the following "groups" exist: | ||
| name | description | course | idnumber | | ||
| Group 1 | Group description | C1 | GROUP1 | | ||
| Group 2 | Group description | C1 | GROUP2 | | ||
And the following "groupings" exist: | ||
| name | course | idnumber | | ||
| Grouping 1 | C1 | GROUPING1 | | ||
| Grouping 2 | C1 | GROUPING2 | | ||
And I log in as "teacher1" | ||
And I follow "Course 1" | ||
And I turn editing mode on | ||
|
||
@javascript | ||
Scenario: Include groups and groupings when importing a course to another course | ||
When I import "Course 1" course into "Course 2" course using this options: | ||
| Initial | Include groups and groupings | 1 | | ||
And I expand "Users" node | ||
And I follow "Groups" | ||
Then I should see "Group 1" | ||
And I should see "Group 2" | ||
And I follow "Groupings" | ||
And I should see "Grouping 1" | ||
And I should see "Grouping 2" | ||
|
||
@javascript | ||
Scenario: Do not include groups and groupings when importing a course to another course | ||
When I import "Course 1" course into "Course 2" course using this options: | ||
| Initial | Include groups and groupings | 0 | | ||
And I expand "Users" node | ||
And I follow "Groups" | ||
Then I should not see "Group 1" | ||
And I should not see "Group 2" | ||
And I follow "Groupings" | ||
And I should not see "Grouping 1" | ||
And I should not see "Grouping 2" |