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
d74f952b
Commit
d74f952b
authored
Jun 07, 2013
by
Brian Talbot
Committed by
Giulio Gratta
Jun 10, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updates masquerade unit test to account for new show answer button with problems
parent
d778f2e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
lms/djangoapps/courseware/tests/test_masquerade.py
+5
-5
No files found.
lms/djangoapps/courseware/tests/test_masquerade.py
View file @
d74f952b
...
@@ -64,7 +64,7 @@ class TestStaffMasqueradeAsStudent(LoginEnrollmentTestCase):
...
@@ -64,7 +64,7 @@ class TestStaffMasqueradeAsStudent(LoginEnrollmentTestCase):
def
test_staff_debug_for_staff
(
self
):
def
test_staff_debug_for_staff
(
self
):
resp
=
self
.
get_cw_section
()
resp
=
self
.
get_cw_section
()
sdebug
=
'<div><a href="#i4x_edX_graded_problem_H1P1_debug" id="i4x_edX_graded_problem_H1P1_trig">Staff Debug Info</a></div>'
sdebug
=
'<div><a href="#i4x_edX_graded_problem_H1P1_debug" id="i4x_edX_graded_problem_H1P1_trig">Staff Debug Info</a></div>'
self
.
assertTrue
(
sdebug
in
resp
.
content
)
self
.
assertTrue
(
sdebug
in
resp
.
content
)
...
@@ -84,9 +84,9 @@ class TestStaffMasqueradeAsStudent(LoginEnrollmentTestCase):
...
@@ -84,9 +84,9 @@ class TestStaffMasqueradeAsStudent(LoginEnrollmentTestCase):
resp
=
self
.
get_cw_section
()
resp
=
self
.
get_cw_section
()
sdebug
=
'<div><a href="#i4x_edX_graded_problem_H1P1_debug" id="i4x_edX_graded_problem_H1P1_trig">Staff Debug Info</a></div>'
sdebug
=
'<div><a href="#i4x_edX_graded_problem_H1P1_debug" id="i4x_edX_graded_problem_H1P1_trig">Staff Debug Info</a></div>'
self
.
assertFalse
(
sdebug
in
resp
.
content
)
self
.
assertFalse
(
sdebug
in
resp
.
content
)
def
get_problem
(
self
):
def
get_problem
(
self
):
pun
=
'H1P1'
pun
=
'H1P1'
problem_location
=
"i4x://edX/graded/problem/
%
s"
%
pun
problem_location
=
"i4x://edX/graded/problem/
%
s"
%
pun
...
@@ -105,7 +105,7 @@ class TestStaffMasqueradeAsStudent(LoginEnrollmentTestCase):
...
@@ -105,7 +105,7 @@ class TestStaffMasqueradeAsStudent(LoginEnrollmentTestCase):
resp
=
self
.
get_problem
()
resp
=
self
.
get_problem
()
html
=
json
.
loads
(
resp
.
content
)[
'html'
]
html
=
json
.
loads
(
resp
.
content
)[
'html'
]
print
html
print
html
sabut
=
'<
input class="show" type="button" value="Show Answer"
>'
sabut
=
'<
button class="show"><span class="show-label">Show Answer(s)</span> <span class="sr">(for question(s) above - adjacent to each field)</span></button
>'
self
.
assertTrue
(
sabut
in
html
)
self
.
assertTrue
(
sabut
in
html
)
def
test_no_showanswer_for_student
(
self
):
def
test_no_showanswer_for_student
(
self
):
...
@@ -116,5 +116,5 @@ class TestStaffMasqueradeAsStudent(LoginEnrollmentTestCase):
...
@@ -116,5 +116,5 @@ class TestStaffMasqueradeAsStudent(LoginEnrollmentTestCase):
resp
=
self
.
get_problem
()
resp
=
self
.
get_problem
()
html
=
json
.
loads
(
resp
.
content
)[
'html'
]
html
=
json
.
loads
(
resp
.
content
)[
'html'
]
print
html
print
html
sabut
=
'<
input class="show" type="button" value="Show Answer"
>'
sabut
=
'<
button class="show"><span class="show-label">Show Answer(s)</span> <span class="sr">(for question(s) above - adjacent to each field)</span></button
>'
self
.
assertFalse
(
sabut
in
html
)
self
.
assertFalse
(
sabut
in
html
)
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