summaryrefslogtreecommitdiff
path: root/test/integration/targets/argspec/library/argspec.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/argspec/library/argspec.py')
-rw-r--r--test/integration/targets/argspec/library/argspec.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/integration/targets/argspec/library/argspec.py b/test/integration/targets/argspec/library/argspec.py
index b6d6d110..2d86d77b 100644
--- a/test/integration/targets/argspec/library/argspec.py
+++ b/test/integration/targets/argspec/library/argspec.py
@@ -23,6 +23,10 @@ def main():
'type': 'str',
'choices': ['absent', 'present'],
},
+ 'default_value': {
+ 'type': 'bool',
+ 'default': True,
+ },
'path': {},
'content': {},
'mapping': {
@@ -246,7 +250,7 @@ def main():
('state', 'present', ('path', 'content'), True),
),
mutually_exclusive=(
- ('path', 'content'),
+ ('path', 'content', 'default_value',),
),
required_one_of=(
('required_one_of_one', 'required_one_of_two'),