diff options
author | Damien George <damien@micropython.org> | 2022-02-28 18:51:45 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-02-28 19:02:58 +1100 |
commit | c4b8dae4387b3a01cf4139c75f0852c5a6ffc108 (patch) | |
tree | 8aa85111639f014200be4b56711ab611d6b430c2 /tests/unix/extra_coverage.py | |
parent | 5c46721a1cc32bdb8f700955f9b441a08056f7b0 (diff) |
tests/unix: Add coverage test for freezing various objects.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/unix/extra_coverage.py')
-rw-r--r-- | tests/unix/extra_coverage.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unix/extra_coverage.py b/tests/unix/extra_coverage.py index 8ea27cbf2..bb2248502 100644 --- a/tests/unix/extra_coverage.py +++ b/tests/unix/extra_coverage.py @@ -89,6 +89,9 @@ try: except ZeroDivisionError: print("ZeroDivisionError") +# test importing various objects +import frzmpy3 + # test for MP_QSTR_NULL regression from frzqstr import returns_NULL |