()
| 432 | |
| 433 | |
| 434 | def test_cellmagic(): |
| 435 | for example in syntax_ml['cellmagic']: |
| 436 | transform_checker(example, ipt.cellmagic) |
| 437 | |
| 438 | line_example = [(u'%%bar 123', None), |
| 439 | (u'hello', None), |
| 440 | (u'' , u_fmt("get_ipython().run_cell_magic('bar', '123', 'hello')")), |
| 441 | ] |
| 442 | transform_checker(line_example, ipt.cellmagic, end_on_blank_line=True) |
| 443 | |
| 444 | def test_has_comment(): |
| 445 | tests = [('text', False), |
nothing calls this directly
no test coverage detected