summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/blocks/unsafe_failed_task.yml
blob: adfa492ad9b7f5c4cb55156af5bbd5ed9369a927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- hosts: localhost
  gather_facts: false
  vars:
    - data: {}
  tasks:
    - block:
        - name: template error
          debug:
            msg: "{{ data.value }}"
      rescue:
        - debug:
            msg: "{{ ansible_failed_task.action }}"

        - assert:
            that:
              - ansible_failed_task.name == "template error"
              - ansible_failed_task.action == "debug"