summaryrefslogtreecommitdiff
path: root/test/integration/targets/handlers/test_multiple_handlers_with_recursive_notification.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/handlers/test_multiple_handlers_with_recursive_notification.yml')
-rw-r--r--test/integration/targets/handlers/test_multiple_handlers_with_recursive_notification.yml36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/integration/targets/handlers/test_multiple_handlers_with_recursive_notification.yml b/test/integration/targets/handlers/test_multiple_handlers_with_recursive_notification.yml
deleted file mode 100644
index c4b69831..00000000
--- a/test/integration/targets/handlers/test_multiple_handlers_with_recursive_notification.yml
+++ /dev/null
@@ -1,36 +0,0 @@
----
-- name: test multiple handlers with recursive notification
- hosts: localhost
- gather_facts: false
-
- tasks:
- - name: notify handler 1
- command: echo
- changed_when: true
- notify: handler 1
-
- - meta: flush_handlers
-
- - name: verify handlers
- assert:
- that:
- - "ran_handler_1 is defined"
- - "ran_handler_2a is defined"
- - "ran_handler_2b is defined"
-
- handlers:
- - name: handler 1
- set_fact:
- ran_handler_1: True
- changed_when: true
- notify: handler_2
-
- - name: handler 2a
- set_fact:
- ran_handler_2a: True
- listen: handler_2
-
- - name: handler 2b
- set_fact:
- ran_handler_2b: True
- listen: handler_2