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