summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/jinja2_native_types/test_preserving_quotes.yml
blob: d6fea10ea6cb42c086f61de985ae4b06fc7c13d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- hosts: localhost
  gather_facts: false
  tasks:
    - assert:
        that:
          - quoted_str == '"hello"'
          - empty_quoted_str == '""'
      vars:
        third_nested_lvl: '"hello"'
        second_nested_lvl: "{{ third_nested_lvl }}"
        first_nested_lvl: "{{ second_nested_lvl }}"
        quoted_str: "{{ first_nested_lvl }}"
        empty_quoted_str: "{{ empty_str }}"
        empty_str: '""'