mitogen/tests/ansible/integration/action/make_tmp_path.yml

27 lines
574 B
YAML
Raw Normal View History

- hosts: all
any_errors_fatal: true
tasks:
- name: integration/action/make_tmp_path.yml
assert:
that: true
- action_passthrough:
method: _make_tmp_path
register: out
- assert:
2018-04-16 14:48:20 +00:00
# This string must match ansible.cfg::remote_tmp
that: out.result.startswith("~/.ansible/mitogen-tests/"|expanduser)
- stat:
path: "{{out.result}}"
register: st
- assert:
that: st.stat.exists and st.stat.isdir and st.stat.mode == "0700"
- file:
path: "{{out.result}}"
state: absent