summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/includes/roles/test_includes/handlers/more_handlers.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/includes/roles/test_includes/handlers/more_handlers.yml')
-rw-r--r--test/integration/targets/includes/roles/test_includes/handlers/more_handlers.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/integration/targets/includes/roles/test_includes/handlers/more_handlers.yml b/test/integration/targets/includes/roles/test_includes/handlers/more_handlers.yml
new file mode 100644
index 0000000..c85d53c
--- /dev/null
+++ b/test/integration/targets/includes/roles/test_includes/handlers/more_handlers.yml
@@ -0,0 +1,12 @@
+- name: included_handler
+ set_fact:
+ ca: 4001
+ cb: 4002
+ cc: 4003
+
+- name: verify_handler
+ assert:
+ that:
+ - "ca == 4001"
+ - "cb == 4002"
+ - "cc == 4003"