summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/meta_tasks/test_end_play.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/meta_tasks/test_end_play.yml')
-rw-r--r--test/integration/targets/meta_tasks/test_end_play.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/integration/targets/meta_tasks/test_end_play.yml b/test/integration/targets/meta_tasks/test_end_play.yml
new file mode 100644
index 0000000..29489dc
--- /dev/null
+++ b/test/integration/targets/meta_tasks/test_end_play.yml
@@ -0,0 +1,12 @@
+- name: Testing end_play with strategy {{ test_strategy | default('linear') }}
+ hosts: testhost:testhost2
+ gather_facts: no
+ strategy: "{{ test_strategy | default('linear') }}"
+ tasks:
+ - debug:
+ msg: "Testing end_play on host {{ inventory_hostname }}"
+
+ - meta: end_play
+
+ - fail:
+ msg: 'Failed to end using end_play'