(self, mock_foo)
| 1281 | def test_two(self, mock_foo): |
| 1282 | self._test(mock_foo) |
| 1283 | def test_one(self, mock_foo): |
| 1284 | self._test(mock_foo) |
| 1285 | |
| 1286 | SomeTest = patch(foo_name, new_callable=SomeClass)(SomeTest) |
| 1287 | SomeTest().test_one() |
no test coverage detected