test RichOutput with no metadata
()
| 85 | yield nt.assert_equal, rich._repr_svg_(), None |
| 86 | |
| 87 | def test_rich_output_no_metadata(): |
| 88 | """test RichOutput with no metadata""" |
| 89 | data = full_data |
| 90 | rich = capture.RichOutput(data=data) |
| 91 | for method, mime in _mime_map.items(): |
| 92 | yield nt.assert_equal, getattr(rich, method)(), data[mime] |
| 93 | |
| 94 | def test_rich_output_metadata(): |
| 95 | """test RichOutput with metadata""" |
nothing calls this directly
no outgoing calls
no test coverage detected