summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/path_lookups/testplay.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/path_lookups/testplay.yml')
-rw-r--r--test/integration/targets/path_lookups/testplay.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/integration/targets/path_lookups/testplay.yml b/test/integration/targets/path_lookups/testplay.yml
new file mode 100644
index 0000000..8bf4553
--- /dev/null
+++ b/test/integration/targets/path_lookups/testplay.yml
@@ -0,0 +1,20 @@
+- name: test initial state
+ hosts: localhost
+ gather_facts: false
+ pre_tasks:
+ - name: remove {{ remove }}
+ file: path={{ playbook_dir }}/{{ remove }} state=absent
+ roles:
+ - showfile
+ post_tasks:
+ - name: from play
+ set_fact: play_result="{{lookup('file', 'testfile')}}"
+
+ - name: output stage {{ remove }} removed
+ debug: msg="play> {{play_out}}, role> {{role_out}}"
+
+ - name: verify that result match expected
+ assert:
+ that:
+ - 'play_result == play_out'
+ - 'role_result == role_out'