()
| 121 | nt.assert_equal(offset, 4) |
| 122 | |
| 123 | def test_multiline_statement(): |
| 124 | cell = """a = (1, |
| 125 | 3) |
| 126 | |
| 127 | int() |
| 128 | map() |
| 129 | """ |
| 130 | for c in range(16, 22): |
| 131 | yield lambda cell, c: expect_token("int", cell, c), cell, c |
| 132 | for c in range(22, 28): |
| 133 | yield lambda cell, c: expect_token("map", cell, c), cell, c |
nothing calls this directly
no test coverage detected