[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/mod/quiz/tests/behat/ -> completion_condition_passing_grade.feature (source)

   1  @mod @mod_quiz
   2  Feature: Set a quiz to be marked complete when the student passes
   3    In order to ensure a student has learned the material before being marked complete
   4    As a teacher
   5    I need to set a quiz to complete when the student recieves a passing grade
   6  
   7    Background:
   8      Given the following "users" exist:
   9        | username | firstname | lastname | email                |
  10        | student1 | Student   | 1        | student1@example.com |
  11        | teacher1 | Teacher   | 1        | teacher1@example.com |
  12      And the following "courses" exist:
  13        | fullname | shortname | category | enablecompletion |
  14        | Course 1 | C1        | 0        | 1                |
  15      And the following "course enrolments" exist:
  16        | user     | course | role           |
  17        | teacher1 | C1     | editingteacher |
  18        | student1 | C1     | student        |
  19      And the following config values are set as admin:
  20        | grade_item_advanced | hiddenuntil |
  21      And the following "question categories" exist:
  22        | contextlevel | reference | name           |
  23        | Course       | C1        | Test questions |
  24      And the following "questions" exist:
  25        | questioncategory | qtype     | name           | questiontext              |
  26        | Test questions   | truefalse | First question | Answer the first question |
  27      And the following "activities" exist:
  28        | activity   | name           | course | idnumber | attempts | gradepass | completion | completionpass |
  29        | quiz       | Test quiz name | C1     | quiz1    | 4        | 5.00      | 2          | 1              |
  30      And quiz "Test quiz name" contains the following questions:
  31        | question       | page |
  32        | First question | 1    |
  33  
  34    Scenario: student1 passes on the first try
  35      When I log in as "student1"
  36      And I follow "Course 1"
  37      And the "Test quiz name" "quiz" activity with "auto" completion should be marked as not complete
  38      And I follow "Test quiz name"
  39      And I press "Attempt quiz now"
  40      And I set the field "True" to "1"
  41      And I press "Finish attempt ..."
  42      And I press "Submit all and finish"
  43      And I follow "C1"
  44      Then "//img[contains(@alt, 'Completed: Test quiz name')]" "xpath_element" should exist in the "li.modtype_quiz" "css_element"
  45      And I log out
  46      And I log in as "teacher1"
  47      And I follow "Course 1"
  48      And I navigate to "Activity completion" node in "Course administration > Reports"
  49      And "//img[contains(@title,'Test quiz name') and @alt='Completed']" "xpath_element" should exist in the "Student 1" "table_row"


Generated: Thu Aug 11 10:00:09 2016 Cross-referenced by PHPXref 0.7.1