(self)
| 541 | assert str(source) == " raise ValueError" |
| 542 | |
| 543 | def test_except_line(self) -> None: |
| 544 | source = getstatement(2, self.source) |
| 545 | assert str(source) == "except Something:" |
| 546 | |
| 547 | def test_except_body(self) -> None: |
| 548 | source = getstatement(3, self.source) |
nothing calls this directly
no test coverage detected