()
| 24 | |
| 25 | @with_setup(_setup, _teardown) |
| 26 | def test_html(): |
| 27 | result = ip.run_line_magic('sql', "sqlite:// SELECT * FROM test;") |
| 28 | assert '<td>foo</td>' in result._repr_html_().lower() |
| 29 | |
| 30 | @with_setup(_setup, _teardown) |
| 31 | def test_print(): |
nothing calls this directly
no test coverage detected