summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/plugin_filtering/tempfile.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/plugin_filtering/tempfile.yml')
-rw-r--r--test/integration/targets/plugin_filtering/tempfile.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/integration/targets/plugin_filtering/tempfile.yml b/test/integration/targets/plugin_filtering/tempfile.yml
new file mode 100644
index 0000000..0646354
--- /dev/null
+++ b/test/integration/targets/plugin_filtering/tempfile.yml
@@ -0,0 +1,9 @@
+---
+- hosts: testhost
+ gather_facts: False
+ tasks:
+ - tempfile:
+ register: temp_result
+ - file:
+ state: absent
+ path: '{{ temp_result["path"] }}'