(mock_method)
| 202 | def test_is_AsyncMock_patch(self): |
| 203 | @patch(async_foo_name, autospec=True) |
| 204 | def test_async(mock_method): |
| 205 | self.assertIsInstance(mock_method.async_method, AsyncMock) |
| 206 | self.assertIsInstance(mock_method, MagicMock) |
| 207 | |
| 208 | @patch(async_foo_name, autospec=True) |
| 209 | def test_normal_method(mock_method): |
nothing calls this directly
no test coverage detected