summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/template/undefined_in_import.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/template/undefined_in_import.yml')
-rw-r--r--test/integration/targets/template/undefined_in_import.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/integration/targets/template/undefined_in_import.yml b/test/integration/targets/template/undefined_in_import.yml
new file mode 100644
index 0000000..62f60d6
--- /dev/null
+++ b/test/integration/targets/template/undefined_in_import.yml
@@ -0,0 +1,11 @@
+- hosts: localhost
+ gather_facts: false
+ tasks:
+ - debug:
+ msg: "{{ lookup('template', 'undefined_in_import.j2') }}"
+ ignore_errors: true
+ register: res
+
+ - assert:
+ that:
+ - "\"'undefined_variable' is undefined\" in res.msg"