summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/var_templating/undefined.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/var_templating/undefined.yml')
-rw-r--r--test/integration/targets/var_templating/undefined.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/integration/targets/var_templating/undefined.yml b/test/integration/targets/var_templating/undefined.yml
new file mode 100644
index 0000000..cf083d5
--- /dev/null
+++ b/test/integration/targets/var_templating/undefined.yml
@@ -0,0 +1,13 @@
+- hosts: localhost
+ gather_facts: false
+ tasks:
+ - name: show defined/undefined var
+ debug: var=mytest
+ vars:
+ mytest: '{{ und }}'
+ register: var_undefined
+
+ - name: ensure either mytest is defined or debug finds it to be undefined
+ assert:
+ that:
+ - mytest is defined or 'VARIABLE IS NOT DEFINED!' in var_undefined['mytest']