summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/set_fact/set_fact_auto_unsafe.yml
blob: b0fb4dcf6533eb04c5ed02bf5dc56aae27bf4b04 (plain)
1
2
3
4
5
6
7
8
9
10
- hosts: localhost
  gather_facts: false
  tasks:
    - set_fact:
        foo: bar
      register: baz

    - assert:
        that:
          - baz.ansible_facts.foo|type_debug != "AnsibleUnsafeText"