1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/lookup_paths/testplay.yml
2015-08-12 19:26:52 -04:00

19 lines
445 B
YAML

- name: test initial state
hosts: localhost
connection: local
gather_facts: false
roles:
- showfile
tasks:
- name: from play
set_fact: play_result="{{lookup('file', 'testfile')}}"
- name: output output
debug: msg="play> {{play_out}}, role> {{role_out}}"
- name: verify that result match expected
assert:
that:
- 'play_result == play_out'
- 'role_result == role_out'