()
| 120 | class AsyncPatchCMTest(unittest.TestCase): |
| 121 | def test_is_async_function_cm(self): |
| 122 | def test_async(): |
| 123 | with patch.object(AsyncClass, 'async_method') as mock_method: |
| 124 | self.assertTrue(inspect.iscoroutinefunction(mock_method)) |
| 125 | |
| 126 | test_async() |
| 127 |
nothing calls this directly
no test coverage detected