()
| 504 | |
| 505 | |
| 506 | def test_issue55() -> None: |
| 507 | source = ( |
| 508 | "def round_trip(dinp):\n assert 1 == dinp\n" |
| 509 | 'def test_rt():\n round_trip("""\n""")\n' |
| 510 | ) |
| 511 | s = getstatement(3, source) |
| 512 | assert str(s) == ' round_trip("""\n""")' |
| 513 | |
| 514 | |
| 515 | def test_multiline() -> None: |
nothing calls this directly
no test coverage detected