()
| 1162 | _run_edit_test("1", exp_contents=ip.user_ns['In'][1], exp_is_temp=True) |
| 1163 | |
| 1164 | def test_bookmark(): |
| 1165 | ip = get_ipython() |
| 1166 | ip.run_line_magic('bookmark', 'bmname') |
| 1167 | with tt.AssertPrints('bmname'): |
| 1168 | ip.run_line_magic('bookmark', '-l') |
| 1169 | ip.run_line_magic('bookmark', '-d bmname') |
| 1170 | |
| 1171 | def test_ls_magic(): |
| 1172 | ip = get_ipython() |
nothing calls this directly
no test coverage detected