Fix bug in plugin path caching

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

View file

@ -38,3 +38,5 @@
- { role: test_script, tags: test_script }
- { role: test_authorized_key, tags: test_authorized_key }
- { role: test_get_url, tags: test_get_url }
- { role: test_embedded_module, tags: test_embedded_module }

View file

@ -0,0 +1,3 @@
#!/usr/bin/env python
print '{"changed":false, "msg":"this is the embedded module"}'

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"