summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collections/collection_root_user/ansible_collections/testns/testcoll/roles/role_subdir/subdir_testrole/tasks/main.yml
blob: 64f5242b9592d66064dca92a9df5c53250ca57b5 (plain)
1
2
3
4
5
6
7
8
9
10
- debug:
    msg: '{{ test_role_input | default("(undefined)") }}'
  register: test_role_output

- set_fact:
    testrole_source: collection

- assert:
    that:
    - test_role_input is not defined or test_role_input == test_role_output.msg