Fix bug in plugin path caching

Fixes #9263
This commit is contained in:
James Cammarata
2014-10-04 21:40:59 -05:00
parent 8cecb0690f
commit 05644686de
4 changed files with 20 additions and 9 deletions

View File

@@ -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"