diff --git a/lms/djangoapps/courseware/tests/test_progress.py b/lms/djangoapps/courseware/tests/test_progress.py index 4e528f44a4..44a0f0cb30 100644 --- a/lms/djangoapps/courseware/tests/test_progress.py +++ b/lms/djangoapps/courseware/tests/test_progress.py @@ -30,8 +30,6 @@ class ProgessTests(TestCase): 'questions_incorrect': 1, 'questions_total': 0}) - - self.oth = dict({'duration_total': 0, 'duration_watched': 0, 'done': True, @@ -48,6 +46,7 @@ class ProgessTests(TestCase): 'questions_correct': 4, 'questions_incorrect': 0, 'questions_total': 7} + def test_getitem(self): self.assertEqual(self.c.__getitem__('duration_watched'), 0) diff --git a/lms/djangoapps/courseware/tests/test_views.py b/lms/djangoapps/courseware/tests/test_views.py index 76047aabda..3ff845834a 100644 --- a/lms/djangoapps/courseware/tests/test_views.py +++ b/lms/djangoapps/courseware/tests/test_views.py @@ -84,22 +84,12 @@ class ViewsTestCase(TestCase): chapter = 'Overview' self.chapter_url = '%s/%s/%s' % ('/courses', self.course_id, chapter) - def test_user_groups(self): # depreciated function mock_user = MagicMock() mock_user.is_authenticated.return_value = False self.assertEquals(views.user_groups(mock_user),[]) - - @override_settings(DEBUG = True) - def test_user_groups_debug(self): - mock_user = MagicMock() - mock_user.is_authenticated.return_value = True - pass - #views.user_groups(mock_user) - #Keep going later - def test_get_current_child(self): self.assertIsNone(views.get_current_child(Stub())) mock_xmodule = MagicMock() @@ -119,7 +109,6 @@ class ViewsTestCase(TestCase): self.assertRaises(Http404, views.redirect_to_course_position, mock_module, True) - def test_registered_for_course(self): self.assertFalse(views.registered_for_course('Basketweaving', None)) mock_user = MagicMock()