summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/gathering/explicit.yml
blob: 453dfb6aa0f4c3b76ca6c0d274bc2543b5b0dc96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- hosts: testhost
  tasks:
    - name: ensure facts have not been collected
      assert:
        that:
            - ansible_facts is undefined or not 'fqdn' in ansible_facts

- hosts: testhost
  gather_facts: True
  tasks:
    - name: ensure facts have been collected
      assert:
        that:
            - ansible_facts is defined and 'fqdn' in ansible_facts