(pytester: Pytester)
| 1381 | |
| 1382 | |
| 1383 | def test_async_support(pytester: Pytester) -> None: |
| 1384 | pytest.importorskip("unittest.async_case") |
| 1385 | |
| 1386 | pytester.copy_example("unittest/test_unittest_asyncio.py") |
| 1387 | reprec = pytester.inline_run() |
| 1388 | reprec.assertoutcome(failed=1, passed=2) |
| 1389 | |
| 1390 | |
| 1391 | @pytest.mark.skipif( |
nothing calls this directly
no test coverage detected