From 983144404b6526c22e5c4224807ea4214e11e248 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 9 Mar 2017 00:07:19 +0100 Subject: tests/basic: Make various tests skippable. --- tests/basics/bytearray_construct_array.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/basics/bytearray_construct_array.py (limited to 'tests/basics/bytearray_construct_array.py') diff --git a/tests/basics/bytearray_construct_array.py b/tests/basics/bytearray_construct_array.py new file mode 100644 index 0000000000..6d45cafda3 --- /dev/null +++ b/tests/basics/bytearray_construct_array.py @@ -0,0 +1,11 @@ +# test construction of bytearray from different objects +try: + from array import array +except ImportError: + import sys + print("SKIP") + sys.exit() + +# arrays +print(bytearray(array('b', [1, 2]))) +print(bytearray(array('h', [0x101, 0x202]))) -- cgit v1.2.3