mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Quote debug msgs and find one more wierd bug to test in v2
This commit is contained in:
parent
65be0eefcf
commit
ac71caa0ac
1 changed files with 6 additions and 2 deletions
|
@ -4,6 +4,10 @@
|
||||||
# Probably easier to see them all in a single block to know what we're testing.
|
# Probably easier to see them all in a single block to know what we're testing.
|
||||||
# When we can start testing v2 we should test that all of these work.
|
# When we can start testing v2 we should test that all of these work.
|
||||||
|
|
||||||
|
# In v1: The following line will traceback if it's the first task in the role.
|
||||||
|
# Does not traceback if it's the second or third etc task.
|
||||||
|
- debug: msg="{{ utf8_simple_accents|b64decode}}"
|
||||||
|
|
||||||
# Expected values of the written files
|
# Expected values of the written files
|
||||||
- name: get checksums that we expect later files to have
|
- name: get checksums that we expect later files to have
|
||||||
copy:
|
copy:
|
||||||
|
@ -117,5 +121,5 @@
|
||||||
|
|
||||||
# These might give garbled output but none of them should traceback
|
# These might give garbled output but none of them should traceback
|
||||||
- debug: var=simple_accents
|
- debug: var=simple_accents
|
||||||
- debug: msg={{ utf8_simple_accents|b64decode}}
|
- debug: msg="{{ utf8_simple_accents|b64decode}}"
|
||||||
- debug: msg={{ latin1_simple_accents|b64decode}}
|
- debug: msg="{{ latin1_simple_accents|b64decode}}"
|
||||||
|
|
Loading…
Reference in a new issue