()
| 1631 | |
| 1632 | |
| 1633 | def test__get_multicapture() -> None: |
| 1634 | assert isinstance(_get_multicapture("no"), MultiCapture) |
| 1635 | pytest.raises(ValueError, _get_multicapture, "unknown").match( |
| 1636 | r"^unknown capturing method: 'unknown'" |
| 1637 | ) |
| 1638 | |
| 1639 | |
| 1640 | def test_logging_while_collecting(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected