summaryrefslogtreecommitdiff
path: root/testsuite.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2012-12-14 11:36:11 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2012-12-14 11:36:33 +0100
commit3704db0b04727fdd73075d314f70367147e69c61 (patch)
tree3579f97c0690f8615a4e5fe6a23572a88700edd7 /testsuite.py
parent6a26a1371cfaa84b6cb664d4b48b102fcb4a7996 (diff)
Verify that the quirky symbol still gets the choice as its parent.
C is not a "proper" symbol of the choice.
Diffstat (limited to 'testsuite.py')
-rw-r--r--testsuite.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite.py b/testsuite.py
index f9378f9..917bfe8 100644
--- a/testsuite.py
+++ b/testsuite.py
@@ -623,6 +623,7 @@ def run_selftests():
verify(A.get_parent() is None, "A should not have a parent")
verify(B.get_parent() is choice_1, "B's parent should be the first choice")
+ verify(C.get_parent() is choice_1, "C's parent should be the first choice")
verify(E.get_parent() is menu_1, "E's parent should be the first menu")
verify(E.get_parent().get_parent() is None,
"E's grandparent should be None")