summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/when.yml
blob: 93b77819d3a327596c424e0168cd0adff5dadb6e (plain)
1
2
3
4
5
6
7
8
9
10
11
---
- name: Test for when (passing)
  hosts: localhost
  gather_facts: false
  tasks:
    - name: Testing for when is passed a list
      ansible.builtin.debug:
        msg: "this is ok"
      when:
        - true
        - "foo"