diff options
| -rw-r--r-- | kconfigtest.py | 13 | ||||
| -rw-r--r-- | tests/Kmisc | 20 |
2 files changed, 33 insertions, 0 deletions
diff --git a/kconfigtest.py b/kconfigtest.py index 088b456..0faafc5 100644 --- a/kconfigtest.py +++ b/kconfigtest.py @@ -504,6 +504,19 @@ def run_selftests(): "Kconfiglib/tests/defconfig_2") # + # Misc. minor APIs + # + + c = kconfiglib.Config("Kconfiglib/tests/Kmisc") + + print "Testing is_optional()..." + + verify(not c.get_choices()[0].is_optional(), + "First choice should not be optional") + verify(c.get_choices()[1].is_optional(), + "Second choice should be optional") + + # # Object dependencies # diff --git a/tests/Kmisc b/tests/Kmisc new file mode 100644 index 0000000..1673896 --- /dev/null +++ b/tests/Kmisc @@ -0,0 +1,20 @@ +# For testing various minor APIs + +# is_optional() + +choice NOT_OPTIONAL + bool "not optional" +config A + bool "A" +config B + bool "B" +endchoice + +choice OPTIONAL + tristate "optional" + optional +config C + tristate "C" +config D + tristate "D" +endchoice |
