()
| 523 | }) |
| 524 | |
| 525 | def test_repr_mime_failure(): |
| 526 | class BadReprMime(object): |
| 527 | def _repr_mimebundle_(self, include=None, exclude=None): |
| 528 | raise RuntimeError |
| 529 | |
| 530 | f = get_ipython().display_formatter |
| 531 | obj = BadReprMime() |
| 532 | d, md = f.format(obj) |
| 533 | nt.assert_in('text/plain', d) |
nothing calls this directly
no test coverage detected