summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/playbook/types.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:21 +0000
commit8a754e0858d922e955e71b253c139e071ecec432 (patch)
tree527d16e74bfd1840c85efd675fdecad056c54107 /test/integration/targets/playbook/types.yml
parentInitial commit. (diff)
downloadansible-core-upstream.tar.xz
ansible-core-upstream.zip
Adding upstream version 2.14.3.upstream/2.14.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/integration/targets/playbook/types.yml')
-rw-r--r--test/integration/targets/playbook/types.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/integration/targets/playbook/types.yml b/test/integration/targets/playbook/types.yml
new file mode 100644
index 0000000..dd8997b
--- /dev/null
+++ b/test/integration/targets/playbook/types.yml
@@ -0,0 +1,21 @@
+- hosts: testhost
+ gather_facts: false
+ tasks:
+ - name: try to set 'diff' a boolean
+ debug: msg="not important"
+ diff: yes
+ ignore_errors: True
+ register: good_diff
+
+ - name: try to set 'diff' a boolean to a string (. would make it non boolean)
+ debug: msg="not important"
+ diff: yes.
+ ignore_errors: True
+ register: bad_diff
+
+ - name: Check we did error out
+ assert:
+ that:
+ - good_diff is success
+ - bad_diff is failed
+ - "'is not a valid boolean' in bad_diff['msg']"