def test_return_value(self): """ Assert the correct return value for the entry_point() function. """ return_value = importer.entry_point() expected_value = (importer.PythonImporter, {}) self.assertEqual(return_value, expected_value)