()
| 2 | |
| 3 | |
| 4 | async def main(): |
| 5 | import sys |
| 6 | import os |
| 7 | sys.path.append(os.path.dirname(os.path.dirname(__file__))) |
| 8 | |
| 9 | from not_my_code import not_my_coroutine |
| 10 | await not_my_coroutine.call1(call2) |
| 11 | print('finish main') |
| 12 | |
| 13 | |
| 14 | async def call2(): |
no test coverage detected