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