Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
ce5d9b93
Commit
ce5d9b93
authored
Aug 19, 2013
by
JonahStanley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added the full range of help modal options
Fixed pylint violations
parent
fc899ab1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
lms/djangoapps/courseware/features/help.feature
+15
-2
lms/djangoapps/courseware/features/help.py
+1
-0
No files found.
lms/djangoapps/courseware/features/help.feature
View file @
ce5d9b93
...
@@ -7,12 +7,25 @@ Feature: The help module should work
...
@@ -7,12 +7,25 @@ Feature: The help module should work
Scenario
:
I
can submit a problem when I am not logged in
Scenario
:
I
can submit a problem when I am not logged in
Given
I visit the homepage
Given
I visit the homepage
When
I open the help form
When
I open the help form
And
I report a
"
problem
"
And
I report a
"
<FeedbackType>
"
Then
I should see confirmation that the issue was received
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
Scenario
:
I
can submit a problem when I am logged in
Given
I am in a course
Given
I am in a course
When
I open the help form
When
I open the help form
And
I report a
"
problem
"
without saying who I am
And
I report a
"
<FeedbackType>
"
without saying who I am
Then
I should see confirmation that the issue was received
Then
I should see confirmation that the issue was received
Examples
:
|
FeedbackType
|
|
problem
|
|
suggestion
|
|
question
|
lms/djangoapps/courseware/features/help.py
View file @
ce5d9b93
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
from
lettuce
import
world
,
step
from
lettuce
import
world
,
step
@step
(
u'I open the help form'
)
@step
(
u'I open the help form'
)
def
open_help_modal
(
step
):
def
open_help_modal
(
step
):
help_css
=
'div.help-tab'
help_css
=
'div.help-tab'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment