diff options
author | Justus Winter <[email protected]> | 2016-05-24 15:57:10 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-05-24 16:00:16 +0000 |
commit | 00ff6d07330028da370c869e3ec442eb76f8cbb8 (patch) | |
tree | dc05241c2a3ed786cc2add677b6a06e9f725c5cd /lang/python/tests/Makefile.am | |
parent | python: Make all GnuPG errors available. (diff) | |
download | gpgme-00ff6d07330028da370c869e3ec442eb76f8cbb8.tar.gz gpgme-00ff6d07330028da370c869e3ec442eb76f8cbb8.zip |
python: Improve and test Context.wait.
* lang/python/pyme/core.py (Context.wait): Improve docstring. As the
context passed to 'gpgme_wait' is never NULL, it is pointless to look
at the returned context. Always raise exceptions.
* lang/python/tests/Makefile.am (pytests): Add new test.
* lang/python/tests/t-wait.py: New file.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/tests/Makefile.am')
-rw-r--r-- | lang/python/tests/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/python/tests/Makefile.am b/lang/python/tests/Makefile.am index 236354ff..7df40a2d 100644 --- a/lang/python/tests/Makefile.am +++ b/lang/python/tests/Makefile.am @@ -39,7 +39,8 @@ py_tests = t-wrapper.py \ t-signers.py \ t-decrypt.py \ t-export.py \ - t-edit.py + t-edit.py \ + t-wait.py TESTS = $(top_srcdir)/tests/gpg/initial.test \ $(py_tests) \ |