blob: 8bf4be2c08b503dee8e593826fb8c5e58904e8fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
- name: test initial state
hosts: testhost
connection: local
gather_facts: false
roles:
- showfile
tasks:
- name: from play
set_fact: play_result="{{lookup('file', 'testfile')}}"
- name: output output {{stage}}
debug: msg="play> {{play_out}}, role> {{role_out}}"
- name: verify that result match expected
assert:
that:
- 'play_result == play_out'
- 'role_result == role_out'
|