aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDamien George2014-01-05 13:44:06 +0000
committerDamien George2014-01-05 13:44:06 +0000
commitf0691f4ed58cab324dee151886ec13cecc1b6771 (patch)
treebae713f78b7263dbef2f4658fa89685d6d5d4b84 /tests
parenta3ab68e9493481a3fcbd1b74278d199c53a3c2f6 (diff)
Fix qstr in objlist.c; add more tests for list.index.
list.index fails on an edge case.
Diffstat (limited to 'tests')
-rw-r--r--tests/basics/tests/list_index.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/basics/tests/list_index.py b/tests/basics/tests/list_index.py
index cc853fe0e..f28263fba 100644
--- a/tests/basics/tests/list_index.py
+++ b/tests/basics/tests/list_index.py
@@ -1,12 +1,24 @@
a = [1, 2, 3]
+print(a.index(1))
+print(a.index(2))
+print(a.index(3))
+print(a.index(3, 2))
+try:
+ print(a.index(3, 2, 2))
+except ValueError:
+ print("Raised ValueError")
+else:
+ print("Did not raise ValueError")
+
a = a + a
b = [0, 0, a]
print(a.index(2))
print(b.index(a))
print(a.index(2, 2))
+
try:
a.index(2, 2, 2)
except ValueError:
print("Raised ValueError")
else:
- raise AssertionError("Did not raise ValueError")
+ print("Did not raise ValueError")