(self, mock_foo)
| 1274 | class SomeTest(object): |
| 1275 | |
| 1276 | def _test(self, mock_foo): |
| 1277 | test.assertIsNot(Foo, original) |
| 1278 | test.assertIs(Foo, mock_foo) |
| 1279 | test.assertIsInstance(Foo, SomeClass) |
| 1280 | |
| 1281 | def test_two(self, mock_foo): |
| 1282 | self._test(mock_foo) |
no test coverage detected