diff options
author | Damien George <damien.p.george@gmail.com> | 2019-10-18 19:48:15 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-10-29 22:22:37 +1100 |
commit | 6e9ba1cf4b0cd8e2986e9abe9a8a66c43a43c63a (patch) | |
tree | 50eb636adadc21b3d0402a4534458457bf814598 /tests/feature_check/bytearray.py | |
parent | 7a49fc387c2ecbc374967f1ebc221770c2ca4b7a (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.py | 5 |
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") |