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