summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/path_lookups/testplay.yml
blob: 8bf4553275d827df12ea46e480803655adae9553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- name: test initial state
  hosts: localhost
  gather_facts: false
  pre_tasks:
    - name: remove {{ remove }}
      file: path={{ playbook_dir }}/{{ remove }} state=absent
  roles:
    - showfile
  post_tasks:
    - name: from play
      set_fact: play_result="{{lookup('file', 'testfile')}}"

    - name: output stage {{ remove }} removed
      debug: msg="play> {{play_out}}, role> {{role_out}}"

    - name: verify that result match expected
      assert:
        that:
            - 'play_result == play_out'
            - 'role_result == role_out'