diff --git a/test/integration/bad_parsing.yml b/test/integration/bad_parsing.yml new file mode 100644 index 00000000000..110b2903ec4 --- /dev/null +++ b/test/integration/bad_parsing.yml @@ -0,0 +1,12 @@ +- hosts: testhost + + # the following commands should all parse fine and execute fine + # and represent quoting scenarios that should be legit + + gather_facts: False + + roles: + + # this one has a lot of things that should fail, see makefile for operation w/ tags + + - { role: test_bad_parsing } diff --git a/test/integration/roles/test_command_shell/tasks/main.yml b/test/integration/roles/test_command_shell/tasks/main.yml index 8e57f3fb935..a7eae095453 100644 --- a/test/integration/roles/test_command_shell/tasks/main.yml +++ b/test/integration/roles/test_command_shell/tasks/main.yml @@ -167,4 +167,4 @@ - name: assert that the file was removed by the shell assert: that: - - "shell_result4.changed == False" \ No newline at end of file + - "shell_result4.changed == False"