()
| 338 | nt.assert_in('src="data:video/xyz;base64,YWJj"',html) |
| 339 | |
| 340 | def test_html_metadata(): |
| 341 | s = "<h1>Test</h1>" |
| 342 | h = display.HTML(s, metadata={"isolated": True}) |
| 343 | nt.assert_equal(h._repr_html_(), (s, {"isolated": True})) |
| 344 | |
| 345 | def test_display_id(): |
| 346 | ip = get_ipython() |
nothing calls this directly
no test coverage detected