tests/basics: Add tests to improve coverage of binary.c.

This commit is contained in:
Rami Ali
2016-12-28 15:29:21 +11:00
committed by Damien George
parent ea6a958393
commit 65574f817a
5 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# test MicroPython-specific features of struct
try:
import ustruct as struct
except:
try:
import struct
except ImportError:
import sys
print("SKIP")
sys.exit()
class A():
pass
# pack and unpack objects
o = A()
s = struct.pack("<O", o)
o2 = struct.unpack("<O", s)
print(o is o2[0])