summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/blocks/always_no_rescue_rc.yml
blob: a4e864160addfd6918430e8d8478cdceabb568b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- hosts: localhost
  gather_facts: no
  tasks:
    - block:
        - name: EXPECTED FAILURE
          fail:
            msg: Failure in block
      always:
        - debug:
            msg: Always
    - debug:
        msg: DID NOT RUN