()
| 474 | |
| 475 | |
| 476 | def test_raises_accepts_generic_base_group() -> None: |
| 477 | with pytest.raises(BaseExceptionGroup[BaseException]) as exc_info: |
| 478 | raise ExceptionGroup("", [RuntimeError()]) |
| 479 | assert exc_info.group_contains(RuntimeError) |
| 480 | |
| 481 | |
| 482 | def test_raises_rejects_specific_generic_group() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…