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.
ansible/test/integration/targets/module_precedence/multiple_roles/foo/tasks/main.yml

11 lines
244 B
YAML

---
- name: Use ping from inside foo role
ping:
register: result
- name: Make sure that we used the ping module from the foo role
assert:
that:
- '"location" in result'
- 'result["location"] == "{{ expected_location }}"'