diff options
| author | Damien George | 2019-10-18 19:48:15 +1100 |
|---|---|---|
| committer | Damien George | 2019-10-29 22:22:37 +1100 |
| commit | 6e9ba1cf4b0cd8e2986e9abe9a8a66c43a43c63a (patch) | |
| tree | 50eb636adadc21b3d0402a4534458457bf814598 /tests/feature_check | |
| parent | 7a49fc387c2ecbc374967f1ebc221770c2ca4b7a (diff) | |
tests: Add feature check for bytearray and skip corresponding tests.
Diffstat (limited to 'tests/feature_check')
| -rw-r--r-- | tests/feature_check/bytearray.py | 5 | ||||
| -rw-r--r-- | tests/feature_check/bytearray.py.exp | 0 |
2 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") diff --git a/tests/feature_check/bytearray.py.exp b/tests/feature_check/bytearray.py.exp new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/tests/feature_check/bytearray.py.exp |
