summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/embedded_module/tasks/main.yml
blob: 6a6d6485fc300cfd72cbd79f6532ecf5ca6fbef1 (plain)
1
2
3
4
5
6
7
8
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"