Commit 876da62f by James Cammarata

Add data test for ping

parent b02ef611
......@@ -25,3 +25,13 @@
that:
- "result.changed == false"
- "result.ping == 'pong'"
- name: ping with data
ping: data="testing"
register: result
- name: assert the ping worked with data
assert:
that:
- "result.changed == false"
- "result.ping == 'testing'"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment