mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-23 11:28:13 +01:00
126347b694
[dgit import orig notmuch_0.38.2.orig.tar.xz]
8 lines
330 B
Python
8 lines
330 B
Python
from notmuch2 import _capi as capi
|
|
from notmuch2 import _errors as errors
|
|
|
|
def test_status_no_message():
|
|
exc = errors.NotmuchError(capi.lib.NOTMUCH_STATUS_PATH_ERROR)
|
|
assert exc.status == capi.lib.NOTMUCH_STATUS_PATH_ERROR
|
|
assert exc.message is None
|
|
assert str(exc) == 'Path supplied is illegal for this function'
|