()
| 435 | |
| 436 | |
| 437 | def test_html_metadata(): |
| 438 | s = "<h1>Test</h1>" |
| 439 | h = display.HTML(s, metadata={"isolated": True}) |
| 440 | assert h._repr_html_() == (s, {"isolated": True}) |
| 441 | |
| 442 | |
| 443 | def test_display_id(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…