summaryrefslogtreecommitdiff
path: root/testsuite.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-11-03 06:47:01 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2017-11-03 06:47:41 +0100
commit0843fe66e000949a290fc085e0cfb2013470817a (patch)
tree8346a5318a974f8199c6fd3e0b064db379e1988d /testsuite.py
parentde2e7f766f247d4e8701dcca9fc921f1d0230463 (diff)
Add comment to choice .assignable test too
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 3abcbb0..17c420a 100644
--- a/testsuite.py
+++ b/testsuite.py
@@ -957,6 +957,7 @@ g
def verify_choice_assignable(choice_name, assignable):
verify_assignable_imp(c.named_choices[choice_name], assignable, True)
+ # Choices with various possible modes
verify_choice_assignable("Y_CHOICE", ( 2,))
verify_choice_assignable("MY_CHOICE", ( 1, 2 ))
verify_choice_assignable("NMY_CHOICE", (0, 1, 2 ))