summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handlers/test_handlers_including_task.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/handlers/test_handlers_including_task.yml')
-rw-r--r--test/integration/targets/handlers/test_handlers_including_task.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/integration/targets/handlers/test_handlers_including_task.yml b/test/integration/targets/handlers/test_handlers_including_task.yml
new file mode 100644
index 0000000..8f7933a
--- /dev/null
+++ b/test/integration/targets/handlers/test_handlers_including_task.yml
@@ -0,0 +1,16 @@
+---
+- name: Verify handler can include other tasks (#47287)
+ hosts: testhost
+ tasks:
+ - name: include a task from the tasks section
+ include_tasks: handlers.yml
+
+ - name: notify a handler
+ debug:
+ msg: notifying handler
+ changed_when: yes
+ notify: include a task from the handlers section
+
+ handlers:
+ - name: include a task from the handlers section
+ include_tasks: handlers.yml