Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
db47b29a
Commit
db47b29a
authored
Mar 13, 2014
by
Brian Talbot
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #128 from edx/will/fix-talbs-ui-tests
Update save submission tests
parents
b2bdb069
5dfe1212
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
apps/openassessment/xblock/test/test_save_response.py
+2
-2
No files found.
apps/openassessment/xblock/test/test_save_response.py
View file @
db47b29a
...
...
@@ -14,7 +14,7 @@ class SaveResponseTest(XBlockHandlerTestCase):
def
test_default_saved_response_blank
(
self
,
xblock
):
resp
=
self
.
request
(
xblock
,
'render_submission'
,
json
.
dumps
({}))
self
.
assertIn
(
'<textarea id="submission__answer__value" placeholder=""></textarea>'
,
resp
)
self
.
assertIn
(
'
<div id="response__save_status">Not saved</div>
'
,
resp
)
self
.
assertIn
(
'
Not saved
'
,
resp
)
@ddt.file_data
(
'data/save_responses.json'
)
@scenario
(
'data/save_scenario.xml'
,
user_id
=
"Perleman"
)
...
...
@@ -32,7 +32,7 @@ class SaveResponseTest(XBlockHandlerTestCase):
submitted
=
submission_text
)
self
.
assertIn
(
expected_html
,
resp
.
decode
(
'utf-8'
))
self
.
assertIn
(
'
<div id="response__save_status">Saved but not submitted</div>
'
,
resp
)
self
.
assertIn
(
'
Saved but not submitted
'
,
resp
)
@scenario
(
'data/save_scenario.xml'
,
user_id
=
"Valchek"
)
def
test_overwrite_saved_response
(
self
,
xblock
):
...
...
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