mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
445 B
YAML
20 lines
445 B
YAML
9 years ago
|
- 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'
|
||
|
|