Make sure raw doesn't eat key=value arguments.

This commit is contained in:
Chris Church
2015-08-02 11:57:32 -04:00
parent cf35bdbdf9
commit 6969b5ac8b
2 changed files with 11 additions and 2 deletions

View File

@@ -83,3 +83,12 @@
- "not sleep_command.stderr"
- "not sleep_command|failed"
- "not sleep_command|changed"
- name: run a raw command with key=value arguments
raw: echo wwe=raw
register: raw_result
- name: make sure raw is really raw and not removing key=value arguments
assert:
that:
- "raw_result.stdout_lines[0] == 'wwe=raw'"