()
| 349 | |
| 350 | |
| 351 | def test_ipy_prompt(): |
| 352 | tt.check_pairs(transform_and_reset(ipt.ipy_prompt), syntax['ipy_prompt']) |
| 353 | for example in syntax_ml['ipy_prompt']: |
| 354 | transform_checker(example, ipt.ipy_prompt) |
| 355 | |
| 356 | # Check that we don't transform the second line if we're inside a cell magic |
| 357 | transform_checker([ |
| 358 | (u'%%foo', '%%foo'), |
| 359 | (u'In [1]: bar', 'In [1]: bar'), |
| 360 | ], ipt.ipy_prompt) |
| 361 | |
| 362 | def test_assemble_logical_lines(): |
| 363 | tests = \ |
nothing calls this directly
no test coverage detected