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