()
| 279 | |
| 280 | |
| 281 | def test_transform_help(): |
| 282 | tf = ipt2.HelpEnd((1, 0), (1, 9)) |
| 283 | assert tf.transform(HELP_IN_EXPR[0]) == HELP_IN_EXPR[2] |
| 284 | |
| 285 | tf = ipt2.HelpEnd((1, 0), (2, 3)) |
| 286 | assert tf.transform(HELP_CONTINUED_LINE[0]) == HELP_CONTINUED_LINE[2] |
| 287 | |
| 288 | tf = ipt2.HelpEnd((1, 0), (2, 8)) |
| 289 | assert tf.transform(HELP_MULTILINE[0]) == HELP_MULTILINE[2] |
| 290 | |
| 291 | tf = ipt2.HelpEnd((1, 0), (1, 0)) |
| 292 | assert tf.transform(HELP_UNICODE[0]) == HELP_UNICODE[2] |
| 293 | |
| 294 | |
| 295 | def test_find_assign_op_dedent(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…