diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-05 14:58:08 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-05 14:58:08 +1100 |
commit | 8d1c236a1faa0681c040007ec9cfe5eec28dda08 (patch) | |
tree | aade0e849879785c398520141a688a378b74e769 /tests/unix/extra_coverage.py | |
parent | 1551309575e6d8f4595cdb3bca28257069049df4 (diff) |
tests/unix/extra_coverage: Add basic tests to import frozen str and mpy.
Diffstat (limited to 'tests/unix/extra_coverage.py')
-rw-r--r-- | tests/unix/extra_coverage.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unix/extra_coverage.py b/tests/unix/extra_coverage.py index 72bcc9994..7bff6d854 100644 --- a/tests/unix/extra_coverage.py +++ b/tests/unix/extra_coverage.py @@ -13,3 +13,7 @@ print(hash(data[0])) print(hash(data[1])) print(hash(bytes(data[0], 'utf8'))) print(hash(str(data[1], 'utf8'))) + +# test basic import of frozen scripts +import frzstr1 +import frzmpy1 |