Cell magic manually registered
(self)
| 811 | self.check_ident('cellm') |
| 812 | |
| 813 | def test_cell_magic_reg(self): |
| 814 | "Cell magic manually registered" |
| 815 | def cellm(line, cell): |
| 816 | return line, cell |
| 817 | |
| 818 | _ip.register_magic_function(cellm, 'cell', 'cellm2') |
| 819 | self.check_ident('cellm2') |
| 820 | |
| 821 | def test_cell_magic_class(self): |
| 822 | "Cell magics declared via a class" |
nothing calls this directly
no test coverage detected