()
| 224 | |
| 225 | |
| 226 | def test_find_assign_system(): |
| 227 | check_find(ipt2.SystemAssign, MULTILINE_SYSTEM_ASSIGN) |
| 228 | check_find(ipt2.SystemAssign, MULTILINE_SYSTEM_ASSIGN_AFTER_DEDENT) |
| 229 | check_find(ipt2.SystemAssign, (["a = !ls\n"], (1, 5), None)) |
| 230 | check_find(ipt2.SystemAssign, (["a=!ls\n"], (1, 2), None)) |
| 231 | check_find(ipt2.SystemAssign, MULTILINE_MAGIC_ASSIGN, match=False) |
| 232 | |
| 233 | |
| 234 | def test_transform_assign_system(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…