()
| 377 | |
| 378 | |
| 379 | def test_excinfo_errisinstance(): |
| 380 | with pytest.raises(ValueError) as excinfo: |
| 381 | h() |
| 382 | assert excinfo.errisinstance(ValueError) |
| 383 | |
| 384 | |
| 385 | def test_excinfo_no_sourcecode(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…