Files
edx-platform/lms/djangoapps/courseware/features/help.feature
JonahStanley ce5d9b93b1 Added the full range of help modal options
Fixed pylint violations
2013-08-19 09:56:57 -04:00

32 lines
852 B
Gherkin

Feature: The help module should work
In order to get help
As a student
I want to be able to report a problem
Scenario: I can submit a problem when I am not logged in
Given I visit the homepage
When I open the help form
And I report a "<FeedbackType>"
Then I should see confirmation that the issue was received
Examples:
| FeedbackType |
| problem |
| suggestion |
| question |
Scenario: I can submit a problem when I am logged in
Given I am in a course
When I open the help form
And I report a "<FeedbackType>" without saying who I am
Then I should see confirmation that the issue was received
Examples:
| FeedbackType |
| problem |
| suggestion |
| question |