1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-06-29 23:49:09 +00:00

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"