()
| 1709 | |
| 1710 | |
| 1711 | def test__get_multicapture() -> None: |
| 1712 | assert isinstance(_get_multicapture("no"), MultiCapture) |
| 1713 | with pytest.raises(ValueError, match=r"^unknown capturing method: 'unknown'$"): |
| 1714 | _get_multicapture("unknown") # type: ignore[arg-type] |
| 1715 | |
| 1716 | |
| 1717 | def test_logging_while_collecting(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected