def test_get_context_object_name(self):
     c = CreatedTestContent()
     self.assertEqual(c.get_context_object_name(), 'content')
     mock_name = Mock()
     c.context_object_name = mock_name
     self.assertIs(c.get_context_object_name(), mock_name)