mirror of https://github.com/ansible/ansible.git
parent
8cecb0690f
commit
05644686de
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
print '{"changed":false, "msg":"this is the embedded module"}'
|
||||
@ -0,0 +1,9 @@
|
||||
- name: run the embedded dummy module
|
||||
test_integration_module:
|
||||
register: result
|
||||
|
||||
- name: assert the embedded module ran
|
||||
assert:
|
||||
that:
|
||||
- "'msg' in result"
|
||||
- result.msg == "this is the embedded module"
|
||||
Loading…
Reference in New Issue