summaryrefslogtreecommitdiff
path: root/test/integration/targets/template/unsafe.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/template/unsafe.yml')
-rw-r--r--test/integration/targets/template/unsafe.yml5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/integration/targets/template/unsafe.yml b/test/integration/targets/template/unsafe.yml
index 6f163881..bef9a4b4 100644
--- a/test/integration/targets/template/unsafe.yml
+++ b/test/integration/targets/template/unsafe.yml
@@ -3,7 +3,6 @@
vars:
nottemplated: this should not be seen
imunsafe: !unsafe '{{ nottemplated }}'
- unsafe_set: !unsafe '{{ "test" }}'
tasks:
- set_fact:
@@ -13,15 +12,11 @@
- set_fact:
this_always_safe: '{{ imunsafe }}'
- - set_fact:
- this_unsafe_set: "{{ unsafe_set }}"
-
- name: ensure nothing was templated
assert:
that:
- this_always_safe == imunsafe
- imunsafe == this_was_unsafe.strip()
- - unsafe_set == this_unsafe_set.strip()
- hosts: localhost