mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
35 lines
1.4 KiB
Gherkin
35 lines
1.4 KiB
Gherkin
@core @core_backup
|
|
Feature: Import course's contents into another course
|
|
In order to move and copy contents between courses
|
|
As a moodle teacher
|
|
I need to import a course contents into another course selecting what I want to import
|
|
|
|
@javascript
|
|
Scenario: Import course's contents to another course
|
|
Given the following "courses" exists:
|
|
| fullname | shortname | category |
|
|
| Course 1 | C1 | 0 |
|
|
| Course 2 | C2 | 0 |
|
|
And the following "users" exists:
|
|
| username | firstname | lastname | email |
|
|
| teacher1 | Teacher | 1 | teacher1@asd.com |
|
|
And the following "course enrolments" exists:
|
|
| user | course | role |
|
|
| teacher1 | C1 | editingteacher |
|
|
| teacher1 | C2 | editingteacher |
|
|
And I log in as "teacher1"
|
|
And I follow "Course 1"
|
|
And I turn editing mode on
|
|
And I add a "Database" to section "1" and I fill the form with:
|
|
| Name | Test database name |
|
|
| Description | Test database description |
|
|
And I add a "Forum" to section "2" and I fill the form with:
|
|
| Forum name | Test forum name |
|
|
| Description | Test forum description |
|
|
And I add the "Comments" block
|
|
And I add the "Recent blog entries" block
|
|
When I import "Course 1" course into "Course 2" course using this options:
|
|
Then I should see "Test database name"
|
|
And I should see "Test forum name"
|
|
And I should see "Comments"
|
|
And I should see "Recent blog entries"
|