summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/roles/allowed_dupes.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/roles/allowed_dupes.yml')
-rw-r--r--test/integration/targets/roles/allowed_dupes.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/integration/targets/roles/allowed_dupes.yml b/test/integration/targets/roles/allowed_dupes.yml
new file mode 100644
index 0000000..998950b
--- /dev/null
+++ b/test/integration/targets/roles/allowed_dupes.yml
@@ -0,0 +1,18 @@
+- name: test that import_role adds one (just one) execution of the role
+ hosts: localhost
+ gather_facts: false
+ tags: ['importrole']
+ roles:
+ - name: a
+ tasks:
+ - name: import role ignores dupe rule
+ import_role: name=a
+
+- name: test that include_role adds one (just one) execution of the role
+ hosts: localhost
+ gather_facts: false
+ tags: ['includerole']
+ roles:
+ - name: a
+ tasks:
+ - include_role: name=a