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 <ricardo.martincoski@gmail.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Asaf Kahlon <asafka7@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Ricardo Martincoski
2018-11-10 00:16:04 -02:00
committed by Thomas Petazzoni
parent b5dd9364ee
commit f07994f7d6
2 changed files with 14 additions and 22 deletions

View File

@@ -0,0 +1,3 @@
from cryptography.fernet import Fernet
key = Fernet.generate_key()
f = Fernet(key)