Skip to content

Commit

Permalink
MDL-61557 Questions: Add behat test
Browse files Browse the repository at this point in the history
  • Loading branch information
rezaies committed Mar 5, 2018
1 parent 18d6ff7 commit c618e93
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions question/tests/behat/move_question_categories.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
@core @core_question
Feature: A teacher can move question categories in the question bank
In order to organize my questions
As a teacher
I create question categories and move them in the question bank

Background:
Given the following "users" exist:
| username | firstname | lastname | email |
| teacher1 | T1 | Teacher1 | teacher1@example.com |
And the following "courses" exist:
| fullname | shortname | category |
| Course 1 | C1 | 0 |
And the following "course enrolments" exist:
| user | course | role |
| teacher1 | C1 | editingteacher |
And the following "activities" exist:
| activity | name | course | idnumber |
| quiz | Test quiz | C1 | quiz1 |
And I log in as "teacher1"
And I am on "Course 1" course homepage

Scenario: A question category can be moved to top level
When I follow "Test quiz"
And I navigate to "Categories" in current page administration
And I set the following fields to these values:
| Name | Test category |
| Parent category | Default for Test quiz |
| Category info | Created as a test |
And I press "submitbutton"
And I click on "Move to top level" "link" in the "Test category" "list_item"
Then I should see "Test category" in the "//div[contains(concat(' ', normalize-space(@class), ' '), ' questioncategories ') and contains(concat(' ', normalize-space(@class), ' '), ' contextlevel70 ')]" "xpath_element"
And "//div[contains(concat(' ', normalize-space(@class), ' '), ' questioncategories ') and contains(concat(' ', normalize-space(@class), ' '), ' contextlevel70 ')]//li//ul" "xpath_element" should not exist

0 comments on commit c618e93

Please sign in to comment.