summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/includes/roles/test_includes/handlers/more_handlers.yml
blob: c85d53ccff7aeef64736a32fc67c8d15ef122007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- name: included_handler
  set_fact:
    ca: 4001
    cb: 4002
    cc: 4003

- name: verify_handler
  assert:
    that:
      - "ca == 4001"
      - "cb == 4002"
      - "cc == 4003"