From 3bd477e7eebadd5a23e07f0dc81a1c818ba3f6d1 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 22 Jul 2015 10:31:46 +0200 Subject: [PATCH] tests: teach the docs test about boolean-rev Signed-off-by: Michael Adam Reviewed-by: Jeremy Allison --- python/samba/tests/docs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/samba/tests/docs.py b/python/samba/tests/docs.py index 1b9b94a5b86..4261e789e1a 100644 --- a/python/samba/tests/docs.py +++ b/python/samba/tests/docs.py @@ -273,8 +273,10 @@ class SmbDotConfTests(TestCase): def _set_arbitrary(self, program, exceptions=None): arbitrary = {'string': 'string', 'boolean': 'yes', 'integer': '5', + 'boolean-rev': 'yes', 'enum':'', 'boolean-auto': '', 'char': 'a', 'list': 'a, b, c'} opposite_arbitrary = {'string': 'string2', 'boolean': 'no', 'integer': '6', + 'boolean-rev': 'no', 'enum':'', 'boolean-auto': '', 'char': 'b', 'list': 'd, e, f'} topdir = os.path.abspath(samba.source_tree_topdir()) try: -- 2.11.4.GIT