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.
21 lines
556 B
YAML
21 lines
556 B
YAML
9 years ago
|
- name: test initial state
|
||
6 years ago
|
hosts: localhost
|
||
9 years ago
|
gather_facts: false
|
||
8 years ago
|
pre_tasks:
|
||
|
- name: remove {{ remove }}
|
||
|
file: path={{ playbook_dir }}/{{ remove }} state=absent
|
||
9 years ago
|
roles:
|
||
|
- showfile
|
||
8 years ago
|
post_tasks:
|
||
9 years ago
|
- name: from play
|
||
|
set_fact: play_result="{{lookup('file', 'testfile')}}"
|
||
|
|
||
8 years ago
|
- name: output stage {{ remove }} removed
|
||
9 years ago
|
debug: msg="play> {{play_out}}, role> {{role_out}}"
|
||
|
|
||
|
- name: verify that result match expected
|
||
|
assert:
|
||
|
that:
|
||
|
- 'play_result == play_out'
|
||
|
- 'role_result == role_out'
|