summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/meta_tasks/test_end_batch.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/meta_tasks/test_end_batch.yml')
-rw-r--r--test/integration/targets/meta_tasks/test_end_batch.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/integration/targets/meta_tasks/test_end_batch.yml b/test/integration/targets/meta_tasks/test_end_batch.yml
new file mode 100644
index 0000000..4af020a
--- /dev/null
+++ b/test/integration/targets/meta_tasks/test_end_batch.yml
@@ -0,0 +1,13 @@
+- name: Testing end_batch with strategy {{ test_strategy | default('linear') }}
+ hosts: testhost:testhost2
+ gather_facts: no
+ serial: 1
+ strategy: "{{ test_strategy | default('linear') }}"
+ tasks:
+ - debug:
+ msg: "Using end_batch, current host: {{ inventory_hostname }}, current batch: {{ ansible_play_batch }}"
+
+ - meta: end_batch
+
+ - fail:
+ msg: "Failed to end_batch, current host: {{ inventory_hostname }}, current batch: {{ ansible_play_batch }}"