Skip to content
Snippets Groups Projects
Commit 60592fd2 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

tests/array1: Add tests for "l", "L" array types to improve coverage.

parent b85bcd67
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,12 @@ i = array.array('I', [1, 2, 3])
print(i, len(i))
print(a[0])
print(i[-1])
a = array.array('l', [-1])
print(len(a), a[0])
a1 = array.array('l', [1, 2, 3])
a2 = array.array('L', [1, 2, 3])
print(a2[1])
print(a1 == a2)
# Empty arrays
print(len(array.array('h')))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment