From f07994f7d64e06c74d87c3eec89adfc248445187 Mon Sep 17 00:00:00 2001 From: Ricardo Martincoski Date: Sat, 10 Nov 2018 00:16:04 -0200 Subject: support/testing: use TestPythonPackageBase for python-cryptography Move the test script to be run on the target from inline in the test case to a separate file. Signed-off-by: Ricardo Martincoski Cc: Arnout Vandecappelle Cc: Asaf Kahlon Cc: Thomas Petazzoni Cc: Yegor Yefremov Signed-off-by: Thomas Petazzoni --- support/testing/tests/package/sample_python_cryptography.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 support/testing/tests/package/sample_python_cryptography.py (limited to 'support/testing/tests/package/sample_python_cryptography.py') diff --git a/support/testing/tests/package/sample_python_cryptography.py b/support/testing/tests/package/sample_python_cryptography.py new file mode 100644 index 0000000000..ec9883dc64 --- /dev/null +++ b/support/testing/tests/package/sample_python_cryptography.py @@ -0,0 +1,3 @@ +from cryptography.fernet import Fernet +key = Fernet.generate_key() +f = Fernet(key) -- cgit v1.2.3