Commit 04d71469 by Calen Pennington

Fixing xmodule tests

parent 2443aa79
...@@ -101,7 +101,7 @@ class IsNewCourseTestCase(unittest.TestCase): ...@@ -101,7 +101,7 @@ class IsNewCourseTestCase(unittest.TestCase):
assert(descriptor.is_newish is True) assert(descriptor.is_newish is True)
descriptor = self.get_dummy_course(start='2013-02-02T12:00', is_new=False) 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) descriptor = self.get_dummy_course(start='2013-02-02T12:00', is_new=True)
assert(descriptor.is_newish is True) assert(descriptor.is_newish is True)
......
...@@ -370,13 +370,13 @@ class ImportTestCase(BaseCourseTestCase): ...@@ -370,13 +370,13 @@ class ImportTestCase(BaseCourseTestCase):
self.assertFalse(course.is_cohorted) self.assertFalse(course.is_cohorted)
# empty config -> False # empty config -> False
course.metadata['cohort_config'] = {} course.cohort_config = {}
self.assertFalse(course.is_cohorted) self.assertFalse(course.is_cohorted)
# false config -> False # false config -> False
course.metadata['cohort_config'] = {'cohorted': False} course.cohort_config = {'cohorted': False}
self.assertFalse(course.is_cohorted) self.assertFalse(course.is_cohorted)
# and finally... # and finally...
course.metadata['cohort_config'] = {'cohorted': True} course.cohort_config = {'cohorted': True}
self.assertTrue(course.is_cohorted) self.assertTrue(course.is_cohorted)
...@@ -28,8 +28,6 @@ class SelfAssessmentTest(unittest.TestCase): ...@@ -28,8 +28,6 @@ class SelfAssessmentTest(unittest.TestCase):
location = Location(["i4x", "edX", "sa_test", "selfassessment", location = Location(["i4x", "edX", "sa_test", "selfassessment",
"SampleQuestion"]) "SampleQuestion"])
metadata = {'attempts': '10'}
descriptor = Mock() descriptor = Mock()
def setUp(self): def setUp(self):
...@@ -46,13 +44,14 @@ class SelfAssessmentTest(unittest.TestCase): ...@@ -46,13 +44,14 @@ class SelfAssessmentTest(unittest.TestCase):
'max_score': 1, 'max_score': 1,
'display_name': "Name", 'display_name': "Name",
'accept_file_upload': False, 'accept_file_upload': False,
'close_date': None 'close_date': None,
'attempts': '10'
} }
self.module = SelfAssessmentModule(test_system, self.location, self.module = SelfAssessmentModule(test_system, self.location,
self.definition, self.descriptor, self.descriptor,
static_data, static_data)
state, metadata=self.metadata)
def test_get_html(self): def test_get_html(self):
html = self.module.get_html(test_system) 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