summaryrefslogtreecommitdiff
path: root/test/integration/targets/module_precedence/multiple_roles/foo/tasks/main.yml
blob: 62b38a7cb5ad6ce9911cc05b659930a1a489241d (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"] == expected_location'