(self)
| 619 | nt.assert_equal(kwd, ["ncall", "resume", "nsplit"]) |
| 620 | |
| 621 | def test_line_magics(self): |
| 622 | ip = get_ipython() |
| 623 | c = ip.Completer |
| 624 | s, matches = c.complete(None, "lsmag") |
| 625 | nt.assert_in("%lsmagic", matches) |
| 626 | s, matches = c.complete(None, "%lsmag") |
| 627 | nt.assert_in("%lsmagic", matches) |
| 628 | |
| 629 | def test_cell_magics(self): |
| 630 | from IPython.core.magic import register_cell_magic |
nothing calls this directly
no test coverage detected