You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/display-newline/tasks/main.yml

11 lines
359 B
YAML

- name: Run a command which generates a warning with NL, CR and CRNL
command: ansible -m noisy localhost
register: result
environment:
ANSIBLE_FORCE_COLOR: 0
ANSIBLE_LIBRARY: "{{ role_path }}/library"
- name: Verify NL and CR are preserved, but CRNL is converted to NL
assert:
that: result.stderr is contains 'Hello\nNew\rAnsible\nWorld'