Skip to content

Commit

Permalink
MDL-59195 mod_assign: add behat tests for comments error
Browse files Browse the repository at this point in the history
  • Loading branch information
davosmith committed Aug 21, 2017
1 parent 31fb719 commit ce5bf80
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions mod/assign/tests/behat/assign_comments_no_error.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
@mod @mod_assign
Feature: Switch role does not cause an error message in assignsubmission_comments

Background:
Given the following "courses" exist:
| fullname | shortname |
| Course 1 | C1 |
And the following "users" exist:
| username |
| teacher1 |
And the following "course enrolments" exist:
| course | user | role |
| C1 | teacher1 | editingteacher |
And I log in as "teacher1"
And I am on "Course 1" course homepage
And I turn editing mode on
And I add a "Assignment" to section "1" and I fill the form with:
| Assignment name | Test assignment |
| Description | This is the description text |
| Students submit in groups | Yes |

Scenario: I switch role to student and an error doesn't occur
When I follow "Switch role to..." in the user menu
And I press "Student"
And I follow "Test assignment"
Then I should see "This is the description text"

0 comments on commit ce5bf80

Please sign in to comment.