diff options
author | Justus Winter <[email protected]> | 2017-02-16 13:53:11 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2017-02-16 15:43:10 +0000 |
commit | 476b97822b169c30cc246c1de2ff94cf89084706 (patch) | |
tree | a11b21e34c3f414a5524e353083faaa7c6ba25ad /lang/python/tests/Makefile.am | |
parent | python: Fix passphrase callback wrapping. (diff) | |
download | gpgme-476b97822b169c30cc246c1de2ff94cf89084706.tar.gz gpgme-476b97822b169c30cc246c1de2ff94cf89084706.zip |
python: Support quick key creation.
* NEWS: Update.
* lang/python/gpg/constants/__init__.py: Import new file.
* lang/python/gpg/constants/create.py: New file.
* lang/python/gpg/core.py (Context.create_key): New function.
* lang/python/tests/Makefile.am (XTESTS): Add new test.
* lang/python/tests/support.py (TemporaryDirectory): New class.
* lang/python/tests/t-quick-key-creation.py: New file.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-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 d7f2e58b..5469e751 100644 --- a/lang/python/tests/Makefile.am +++ b/lang/python/tests/Makefile.am @@ -50,7 +50,8 @@ py_tests = t-wrapper.py \ t-encrypt-large.py \ t-file-name.py \ t-idiomatic.py \ - t-protocol-assuan.py + t-protocol-assuan.py \ + t-quick-key-creation.py XTESTS = initial.py $(py_tests) final.py EXTRA_DIST = support.py $(XTESTS) encrypt-only.asc sign-only.asc \ |