tests/basic: Make various tests skippable.

This commit is contained in:
Paul Sokolovsky
2017-03-09 00:07:19 +01:00
parent 52b6764894
commit 983144404b
13 changed files with 75 additions and 30 deletions

View File

@@ -0,0 +1,12 @@
# test bytes + other
try:
import array
except ImportError:
import sys
print("SKIP")
sys.exit()
# should be byteorder-neutral
print(b"123" + array.array('h', [0x1515]))
print(b"\x01\x02" + array.array('b', [1, 2]))