summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-11-02 23:32:26 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2017-11-02 23:34:11 +0100
commitd4634ba8f0d6d53872b0a744fee9111d55334550 (patch)
treea8fc6bdf2584a2e07eca186b8797ec0744e5931b /tests
parent1b9c437b95a986ec7279afe638fa8a6770beb168 (diff)
Clean up choice semantics tests
Can finally get rid of get_choices() and get_items() now. Piggyback some more Kwtf tests, and remove some outdated comments. There's already plenty of select/imply testing.
Diffstat (limited to 'tests')
-rw-r--r--tests/Kwtf10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/Kwtf b/tests/Kwtf
index c71e328..85ae57e 100644
--- a/tests/Kwtf
+++ b/tests/Kwtf
@@ -3,6 +3,16 @@ config A
select n
select m
select y
+ select UNAME_RELEASE
+ select "n"
+ select "m"
+ select "y"
+ select "UNAME_RELEASE"
imply n
imply m
imply y
+ imply UNAME_RELEASE
+ imply "n"
+ imply "m"
+ imply "y"
+ imply "UNAME_RELEASE"