(pytester: Pytester)
| 1275 | |
| 1276 | |
| 1277 | def test_async_support(pytester: Pytester) -> None: |
| 1278 | pytest.importorskip("unittest.async_case") |
| 1279 | |
| 1280 | pytester.copy_example("unittest/test_unittest_asyncio.py") |
| 1281 | reprec = pytester.inline_run() |
| 1282 | reprec.assertoutcome(failed=1, passed=2) |
| 1283 | |
| 1284 | |
| 1285 | def test_asynctest_support(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected