RichOutput with no args
()
| 68 | #----------------------------------------------------------------------------- |
| 69 | |
| 70 | def test_rich_output_empty(): |
| 71 | """RichOutput with no args""" |
| 72 | rich = capture.RichOutput() |
| 73 | for method, mime in _mime_map.items(): |
| 74 | yield nt.assert_equal, getattr(rich, method)(), None |
| 75 | |
| 76 | def test_rich_output(): |
| 77 | """test RichOutput basics""" |
nothing calls this directly
no outgoing calls
no test coverage detected