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
04d71469
Commit
04d71469
authored
Feb 13, 2013
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing xmodule tests
parent
2443aa79
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
10 deletions
+9
-10
common/lib/xmodule/xmodule/tests/test_course_module.py
+1
-1
common/lib/xmodule/xmodule/tests/test_import.py
+3
-3
common/lib/xmodule/xmodule/tests/test_self_assessment.py
+5
-6
No files found.
common/lib/xmodule/xmodule/tests/test_course_module.py
View file @
04d71469
...
...
@@ -101,7 +101,7 @@ class IsNewCourseTestCase(unittest.TestCase):
assert
(
descriptor
.
is_newish
is
True
)
descriptor
=
self
.
get_dummy_course
(
start
=
'2013-02-02T12:00'
,
is_new
=
False
)
assert
(
descriptor
.
is_new
is
False
)
assert
(
descriptor
.
is_new
ish
is
False
)
descriptor
=
self
.
get_dummy_course
(
start
=
'2013-02-02T12:00'
,
is_new
=
True
)
assert
(
descriptor
.
is_newish
is
True
)
...
...
common/lib/xmodule/xmodule/tests/test_import.py
View file @
04d71469
...
...
@@ -370,13 +370,13 @@ class ImportTestCase(BaseCourseTestCase):
self
.
assertFalse
(
course
.
is_cohorted
)
# empty config -> False
course
.
metadata
[
'cohort_config'
]
=
{}
course
.
cohort_config
=
{}
self
.
assertFalse
(
course
.
is_cohorted
)
# false config -> False
course
.
metadata
[
'cohort_config'
]
=
{
'cohorted'
:
False
}
course
.
cohort_config
=
{
'cohorted'
:
False
}
self
.
assertFalse
(
course
.
is_cohorted
)
# and finally...
course
.
metadata
[
'cohort_config'
]
=
{
'cohorted'
:
True
}
course
.
cohort_config
=
{
'cohorted'
:
True
}
self
.
assertTrue
(
course
.
is_cohorted
)
common/lib/xmodule/xmodule/tests/test_self_assessment.py
View file @
04d71469
...
...
@@ -28,8 +28,6 @@ class SelfAssessmentTest(unittest.TestCase):
location
=
Location
([
"i4x"
,
"edX"
,
"sa_test"
,
"selfassessment"
,
"SampleQuestion"
])
metadata
=
{
'attempts'
:
'10'
}
descriptor
=
Mock
()
def
setUp
(
self
):
...
...
@@ -46,13 +44,14 @@ class SelfAssessmentTest(unittest.TestCase):
'max_score'
:
1
,
'display_name'
:
"Name"
,
'accept_file_upload'
:
False
,
'close_date'
:
None
'close_date'
:
None
,
'attempts'
:
'10'
}
self
.
module
=
SelfAssessmentModule
(
test_system
,
self
.
location
,
self
.
definition
,
self
.
descriptor
,
static_data
,
state
,
metadata
=
self
.
metadata
)
self
.
descriptor
,
static_data
)
def
test_get_html
(
self
):
html
=
self
.
module
.
get_html
(
test_system
)
...
...
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