()
| 174 | nt.assert_equal(ipt2.assemble_continued_line(lines, (1, 5), 2), "foo bar") |
| 175 | |
| 176 | def test_find_assign_magic(): |
| 177 | check_find(ipt2.MagicAssign, MULTILINE_MAGIC_ASSIGN) |
| 178 | check_find(ipt2.MagicAssign, MULTILINE_SYSTEM_ASSIGN, match=False) |
| 179 | check_find(ipt2.MagicAssign, MULTILINE_SYSTEM_ASSIGN_AFTER_DEDENT, match=False) |
| 180 | |
| 181 | def test_transform_assign_magic(): |
| 182 | check_transform(ipt2.MagicAssign, MULTILINE_MAGIC_ASSIGN) |
nothing calls this directly
no test coverage detected