summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/module_precedence/roles_with_extension/foo/tasks/main.yml
blob: 985fc34115344e6c3648871015631a9e287d5f82 (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: Use ping from inside foo role
  ping:
  register: result

- name: Make sure that we used the ping module from the foo role
  assert:
    that:
      - '"location" in result'
      - 'result["location"] == "role: foo"'