summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/assert/quiet.yml
blob: 6834712c2c1ba89f2e9ef6a66022a678e1ae1547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- hosts: localhost
  gather_facts: False
  vars:
    item_A: yes
  tasks:
  - assert:
      that: "{{ item }} is defined"
      quiet: True
    with_items:
      - item_A
  - assert:
      that: "{{ item }} is defined"
      quiet: False
    with_items:
      - item_A