()
| 510 | |
| 511 | |
| 512 | def test_multiline() -> None: |
| 513 | source = getstatement( |
| 514 | 0, |
| 515 | """\ |
| 516 | raise ValueError( |
| 517 | 23 |
| 518 | ) |
| 519 | x = 3 |
| 520 | """, |
| 521 | ) |
| 522 | assert str(source) == "raise ValueError(\n 23\n)" |
| 523 | |
| 524 | |
| 525 | class TestTry: |
nothing calls this directly
no test coverage detected