diff options
Diffstat (limited to 'test/integration/targets/includes/inherit_notify.yml')
-rw-r--r-- | test/integration/targets/includes/inherit_notify.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/integration/targets/includes/inherit_notify.yml b/test/integration/targets/includes/inherit_notify.yml new file mode 100644 index 0000000000..f868be16ee --- /dev/null +++ b/test/integration/targets/includes/inherit_notify.yml @@ -0,0 +1,18 @@ +- hosts: localhost + gather_facts: false + pre_tasks: + - include_tasks: + file: tasks/trigger_change.yml + apply: + notify: hello + + handlers: + - name: hello + set_fact: hello=world + + tasks: + - name: ensure handler ran + assert: + that: + - hello is defined + - "hello == 'world'" |