Commit 04d71469 by Calen Pennington

Fixing xmodule tests

parent 2443aa79
......@@ -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_newish is False)
descriptor = self.get_dummy_course(start='2013-02-02T12:00', is_new=True)
assert(descriptor.is_newish is True)
......
......@@ -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)
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment