ansible/test/integration/targets/module_precedence/modules_test_envvar.yml

12 lines
217 B
YAML
Raw Normal View History

- hosts: localhost
gather_facts: no
tasks:
- name: Use ping from library path
ping:
register: result
- assert:
that:
- '"location" in result'
- 'result["location"] == "library"'