Cell magic using simple decorator
(underscore_not_in_builtins)
| 1219 | |
| 1220 | |
| 1221 | def test_cell_magic_func_deco(underscore_not_in_builtins): |
| 1222 | "Cell magic using simple decorator" |
| 1223 | |
| 1224 | @register_cell_magic |
| 1225 | def cellm(line, cell): |
| 1226 | return line, cell |
| 1227 | |
| 1228 | check_ident("cellm") |
| 1229 | |
| 1230 | |
| 1231 | def test_cell_magic_reg(underscore_not_in_builtins): |
nothing calls this directly
no test coverage detected
searching dependent graphs…