forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'MDL-54116-master' of git://github.com/cameron1729/moodle
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
blocks/comments/tests/behat/block_comment_dashboard.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@block @block_comments | ||
Feature: Enable Block comments on the dashboard and view comments | ||
In order to enable the comments block on a the dashboard | ||
As a teacher | ||
I can add the comments block to my dashboard | ||
|
||
Background: | ||
Given the following "courses" exist: | ||
| fullname | shortname | category | | ||
| Course 1 | C1 | 0 | | ||
And the following "users" exist: | ||
| username | firstname | lastname | email | | ||
| teacher1 | Teacher | Frist | teacher1@example.com | | ||
|
||
Scenario: Add the comments block on the dashboard and add comments with Javascript disabled | ||
When I log in as "teacher1" | ||
And I press "Customise this page" | ||
And I add the "Comments" block | ||
And I follow "Show comments" | ||
And I add "I'm a comment from the teacher" comment to comments block | ||
Then I should see "I'm a comment from the teacher" | ||
|
||
@javascript | ||
Scenario: Add the comments block on the dashboard and add comments with Javascript enabled | ||
When I log in as "teacher1" | ||
And I press "Customise this page" | ||
And I add the "Comments" block | ||
And I add "I'm a comment from the teacher" comment to comments block | ||
Then I should see "I'm a comment from the teacher" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters