Skip to content

Commit

Permalink
Merge branch 'MDL-42287-25' of git://github.com/ankitagarwal/moodle i…
Browse files Browse the repository at this point in the history
…nto MOODLE_25_STABLE
  • Loading branch information
danpoltawski committed Nov 1, 2013
2 parents c9ee1a7 + d4c3263 commit 7eaaf2d
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions mod/scorm/tests/behat/add_scorm.feature
@@ -0,0 +1,38 @@
@mod @mod_scorm
Feature: Add scorm activity
In order to let students access a scorm package
As a teacher
I need to add scorm activity to a course

@javascript
Scenario: Add a scorm activity to a course
Given the following "users" exists:
| username | firstname | lastname | email |
| teacher1 | Teacher | 1 | teacher1@asd.com |
| student1 | Student | 1 | student1@asd.com |
And the following "courses" exists:
| fullname | shortname | category |
| Course 1 | C1 | 0 |
And the following "course enrolments" exists:
| user | course | role |
| teacher1 | C1 | editingteacher |
| student1 | C1 | student |
When I log in as "teacher1"
And I follow "Course 1"
And I turn editing mode on
And I add a "SCORM package" to section "1"
And I upload "mod/scorm/tests/packages/singlescobasic.zip" file to "Package file" filepicker
And I fill the moodle form with:
| Name | Awesome SCORM package |
| Description | Description |
And I click on "Save and display" "button"
Then I should see "Awesome SCORM package"
And I should see "Normal"
And I should see "Preview"
And I log out
And I log in as "student1"
And I follow "Course 1"
And I follow "Awesome SCORM package"
And I should see "Normal"
And I press "Enter"
And I should see "Golf Explained"
Binary file added mod/scorm/tests/packages/singlescobasic.zip
Binary file not shown.

0 comments on commit 7eaaf2d

Please sign in to comment.