test_casting.yml (ansible-2.14.0) | : | test_casting.yml (ansible-2.14.1rc1) | ||
---|---|---|---|---|
skipping to change at line 16 | skipping to change at line 16 | |||
dict_to_str: "'{{ dict_one }}'" | dict_to_str: "'{{ dict_one }}'" | |||
list_to_str: "'{{ list_one }}'" | list_to_str: "'{{ list_one }}'" | |||
int_to_bool: "{{ i_one|bool }}" | int_to_bool: "{{ i_one|bool }}" | |||
str_true_to_bool: "{{ s_true|bool }}" | str_true_to_bool: "{{ s_true|bool }}" | |||
str_false_to_bool: "{{ s_false|bool }}" | str_false_to_bool: "{{ s_false|bool }}" | |||
list_to_json_str: "{{ list_one | to_json }}" | list_to_json_str: "{{ list_one | to_json }}" | |||
list_to_yaml_str: "{{ list_one | to_yaml }}" | list_to_yaml_str: "{{ list_one | to_yaml }}" | |||
- assert: | - assert: | |||
that: | that: | |||
- 'int_to_str == "2"' | - int_to_str == "'2'" | |||
- 'int_to_str|type_debug in ["str", "unicode"]' | - 'int_to_str|type_debug in ["str", "unicode"]' | |||
- 'int_to_str2 == "2"' | - 'int_to_str2 == "2"' | |||
- 'int_to_str2|type_debug in ["NativeJinjaText"]' | - 'int_to_str2|type_debug in ["NativeJinjaText"]' | |||
- 'str_to_int == 2' | - 'str_to_int == 2' | |||
- 'str_to_int|type_debug == "int"' | - 'str_to_int|type_debug == "int"' | |||
- 'dict_to_str|type_debug in ["str", "unicode"]' | - 'dict_to_str|type_debug in ["str", "unicode"]' | |||
- 'list_to_str|type_debug in ["str", "unicode"]' | - 'list_to_str|type_debug in ["str", "unicode"]' | |||
- 'int_to_bool is sameas true' | - 'int_to_bool is sameas true' | |||
- 'int_to_bool|type_debug == "bool"' | - 'int_to_bool|type_debug == "bool"' | |||
- 'str_true_to_bool is sameas true' | - 'str_true_to_bool is sameas true' | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |