summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/jinja2_native_types/runtests.yml
blob: 422ef57bba1a0d6f05051bdbdc9e891f2ab08735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
- name: Test jinja2 native types
  hosts: localhost
  gather_facts: no
  vars:
      i_one: 1
      i_two: 2
      i_three: 3
      s_one: "1"
      s_two: "2"
      s_three: "3"
      dict_one:
          foo: bar
          baz: bang
      dict_two:
          bar: foo
          foobar: barfoo
      list_one:
          - one
          - two
      list_two:
          - three
          - four
      list_ints:
          - 4
          - 2
      list_one_int:
          - 1
      b_true: True
      b_false: False
      s_true: "True"
      s_false: "False"
      yaml_none: ~
  tasks:
    - import_tasks: test_casting.yml
    - import_tasks: test_concatentation.yml
    - import_tasks: test_bool.yml
    - import_tasks: test_dunder.yml
    - import_tasks: test_types.yml
    - import_tasks: test_none.yml
    - import_tasks: test_template.yml