summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handlers/54991.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/handlers/54991.yml')
-rw-r--r--test/integration/targets/handlers/54991.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/integration/targets/handlers/54991.yml b/test/integration/targets/handlers/54991.yml
new file mode 100644
index 0000000..c7424ed
--- /dev/null
+++ b/test/integration/targets/handlers/54991.yml
@@ -0,0 +1,11 @@
+- hosts: A,B,C,D
+ gather_facts: false
+ serial: 2
+ tasks:
+ - command: echo
+ notify: handler
+ handlers:
+ - name: handler
+ debug:
+ msg: 'handler ran'
+ failed_when: inventory_hostname == 'A'