aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/tests/t-data.py
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2016-05-27 13:58:23 +0000
committerJustus Winter <[email protected]>2016-05-27 15:24:12 +0000
commit3915842657f0849a038752fd7445f96081a89dd9 (patch)
treef86d86e29c5b504d94f4c56e5e9b6123afa233d1 /lang/python/tests/t-data.py
parentsrc: Fix typo. (diff)
downloadgpgme-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/t-data.py')
-rwxr-xr-xlang/python/tests/t-data.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/python/tests/t-data.py b/lang/python/tests/t-data.py
index de60c473..3774f09d 100755
--- a/lang/python/tests/t-data.py
+++ b/lang/python/tests/t-data.py
@@ -52,6 +52,10 @@ data.write(binjunk)
data.seek(0, os.SEEK_SET)
assert data.read() == binjunk
+data = core.Data()
+data.set_file_name("foobar")
+assert data.get_file_name() == "foobar"
+
# Test reading from an existing file.
with tempfile.NamedTemporaryFile() as tmp:
tmp.write(binjunk)