(self)
| 313 | f = HTMLFormatter() |
| 314 | class MyHTML(object): |
| 315 | def _repr_html_(self): |
| 316 | return "hello" |
| 317 | with capture_output() as captured: |
| 318 | result = f(MyHTML) |
| 319 | nt.assert_is(result, None) |
nothing calls this directly
no outgoing calls
no test coverage detected