tests: Add feature check for bytearray and skip corresponding tests.

This commit is contained in:
Damien George
2019-10-18 19:48:15 +11:00
parent 7a49fc387c
commit 6e9ba1cf4b
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
try:
bytearray
print("bytearray")
except NameError:
print("no")

View File