Cell magic manually registered
(underscore_not_in_builtins)
| 1229 | |
| 1230 | |
| 1231 | def test_cell_magic_reg(underscore_not_in_builtins): |
| 1232 | "Cell magic manually registered" |
| 1233 | |
| 1234 | def cellm(line, cell): |
| 1235 | return line, cell |
| 1236 | |
| 1237 | _ip.register_magic_function(cellm, "cell", "cellm2") |
| 1238 | check_ident("cellm2") |
| 1239 | |
| 1240 | |
| 1241 | def test_cell_magic_class(underscore_not_in_builtins): |
nothing calls this directly
no test coverage detected
searching dependent graphs…