summaryrefslogtreecommitdiff
path: root/tests/feature_check/bytearray.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-10-18 19:48:15 +1100
committerDamien George <damien.p.george@gmail.com>2019-10-29 22:22:37 +1100
commit6e9ba1cf4b0cd8e2986e9abe9a8a66c43a43c63a (patch)
tree50eb636adadc21b3d0402a4534458457bf814598 /tests/feature_check/bytearray.py
parent7a49fc387c2ecbc374967f1ebc221770c2ca4b7a (diff)
tests: Add feature check for bytearray and skip corresponding tests.
Diffstat (limited to 'tests/feature_check/bytearray.py')
-rw-r--r--tests/feature_check/bytearray.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/feature_check/bytearray.py b/tests/feature_check/bytearray.py
new file mode 100644
index 000000000..601ef4597
--- /dev/null
+++ b/tests/feature_check/bytearray.py
@@ -0,0 +1,5 @@
+try:
+ bytearray
+ print("bytearray")
+except NameError:
+ print("no")