diff options
author | Justus Winter <[email protected]> | 2016-05-27 13:58:23 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-05-27 15:24:12 +0000 |
commit | 3915842657f0849a038752fd7445f96081a89dd9 (patch) | |
tree | f86d86e29c5b504d94f4c56e5e9b6123afa233d1 /lang/python/tests/Makefile.am | |
parent | src: Fix typo. (diff) | |
download | gpgme-3915842657f0849a038752fd7445f96081a89dd9.tar.gz gpgme-3915842657f0849a038752fd7445f96081a89dd9.zip |
python: Port more tests.
* lang/python/pyme/core.py (Data._error_check): Add
'gpgme_data_get_file_name' to the list of functions not returning an
error code.
* lang/python/tests/Makefile.am (pytests): Add new tests.
* lang/python/tests/support.py (verbose): New variable.
* lang/python/tests/t-data.py: Test setting and getting the filename.
* lang/python/tests/t-encrypt-large.py: New file.
* lang/python/tests/t-file-name.py: Likewise.
* lang/python/tests/t-trustlist.py: Likewise.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/tests/Makefile.am')
-rw-r--r-- | lang/python/tests/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/python/tests/Makefile.am b/lang/python/tests/Makefile.am index 7df40a2d..0bc8c7f8 100644 --- a/lang/python/tests/Makefile.am +++ b/lang/python/tests/Makefile.am @@ -39,8 +39,11 @@ py_tests = t-wrapper.py \ t-signers.py \ t-decrypt.py \ t-export.py \ + t-trustlist.py \ t-edit.py \ - t-wait.py + t-wait.py \ + t-encrypt-large.py \ + t-file-name.py TESTS = $(top_srcdir)/tests/gpg/initial.test \ $(py_tests) \ |