Exemplo n.º 1
0
 def test_publish_to_lms(self):
     """ Verify the method publishes data to LMS. """
     course = CourseFactory()
     with mock.patch.object(LMSPublisher, 'publish') as mock_publish:
         course.publish_to_lms()
         self.assertTrue(mock_publish.called)
 def test_publish_to_lms(self):
     """ Verify the method publishes data to LMS. """
     course = CourseFactory()
     with mock.patch.object(LMSPublisher, 'publish') as mock_publish:
         course.publish_to_lms()
         self.assertTrue(mock_publish.called)