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.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/integration/targets/argspec/library/argspec.py b/test/integration/targets/argspec/library/argspec.py
index 724b34e0c8..73d168cae4 100644
--- a/test/integration/targets/argspec/library/argspec.py
+++ b/test/integration/targets/argspec/library/argspec.py
@@ -91,6 +91,13 @@ def main():
'off',
],
},
+ 'choices': {
+ 'type': 'str',
+ 'choices': [
+ 'foo',
+ 'bar',
+ ],
+ }
},
required_if=(
('state', 'present', ('path', 'content'), True),