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

  - assert:
      that:
        - '"location" not in result'