sphinx/tests/test_errors.py
2022-06-16 19:33:55 +01:00

12 lines
321 B
Python

from sphinx.errors import ExtensionError
def test_extension_error_repr():
exc = ExtensionError("foo")
assert repr(exc) == "ExtensionError('foo')"
def test_extension_error_with_orig_exc_repr():
exc = ExtensionError("foo", Exception("bar"))
assert repr(exc) == "ExtensionError('foo', Exception('bar'))"