summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/register/invalid_skipped.yml
blob: 0ad31f510a6bcf2eff8e62c079e3f892fe668e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- hosts: testhost
  gather_facts: false
  tasks:
    - name: test registering bad var when skipped
      debug: msg='does nothing really but register this'
      when: false
      register: 200

    - name: never gets here
      assert:
        that:
          - 200 is not defined