(self)
| 564 | class CellMagicsCommon(object): |
| 565 | |
| 566 | def test_whole_cell(self): |
| 567 | src = "%%cellm line\nbody\n" |
| 568 | out = self.sp.transform_cell(src) |
| 569 | ref = "get_ipython().run_cell_magic('cellm', 'line', 'body')\n" |
| 570 | nt.assert_equal(out, ref) |
| 571 | |
| 572 | def test_cellmagic_help(self): |
| 573 | self.sp.push('%%cellm?') |
nothing calls this directly
no test coverage detected