summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/meta_tasks/test_end_play_serial_one.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/meta_tasks/test_end_play_serial_one.yml')
-rw-r--r--test/integration/targets/meta_tasks/test_end_play_serial_one.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/integration/targets/meta_tasks/test_end_play_serial_one.yml b/test/integration/targets/meta_tasks/test_end_play_serial_one.yml
new file mode 100644
index 0000000..f838d4a
--- /dev/null
+++ b/test/integration/targets/meta_tasks/test_end_play_serial_one.yml
@@ -0,0 +1,13 @@
+- name: Testing end_play with serial 1 and strategy {{ test_strategy | default('linear') }}
+ hosts: testhost:testhost2
+ gather_facts: no
+ serial: 1
+ 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'