summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/module_precedence/modules_test_envvar.yml
blob: f52e2f914fd4522b3f8a0f0f8292e49214ef1055 (plain)
1
2
3
4
5
6
7
8
9
10
11
- hosts: testhost
  gather_facts: no
  tasks:
  - name: Use ping from library path
    ping:
    register: result

  - assert:
      that:
        - '"location" in result'
        - 'result["location"] == "library"'