summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collections/check_populated_inventory.yml
blob: ab33081ae7ad75c621a4dd0b91bc3d58bd14f1e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
- hosts: localhost
  connection: local
  gather_facts: no
  tasks:
  - assert:
      that:
        - "groups.all | length == 2"
        - "groups.ungrouped == groups.all"
        - "'cache_host_a' in groups.all"
        - "'dynamic_host_a' in groups.all"