summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/module_precedence/roles_no_extension/foo/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/module_precedence/roles_no_extension/foo/tasks/main.yml')
-rw-r--r--test/integration/targets/module_precedence/roles_no_extension/foo/tasks/main.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/integration/targets/module_precedence/roles_no_extension/foo/tasks/main.yml b/test/integration/targets/module_precedence/roles_no_extension/foo/tasks/main.yml
new file mode 100644
index 0000000..985fc34
--- /dev/null
+++ b/test/integration/targets/module_precedence/roles_no_extension/foo/tasks/main.yml
@@ -0,0 +1,10 @@
+---
+- 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"] == "role: foo"'