()
| 468 | |
| 469 | |
| 470 | def test_raises_accepts_generic_group() -> None: |
| 471 | with pytest.raises(ExceptionGroup[Exception]) as exc_info: |
| 472 | raise ExceptionGroup("", [RuntimeError()]) |
| 473 | assert exc_info.group_contains(RuntimeError) |
| 474 | |
| 475 | |
| 476 | def test_raises_accepts_generic_base_group() -> None: |
nothing calls this directly
no test coverage detected