summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collections/ansiballz_dupe/test_ansiballz_cache_dupe_shortname.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/collections/ansiballz_dupe/test_ansiballz_cache_dupe_shortname.yml')
-rw-r--r--test/integration/targets/collections/ansiballz_dupe/test_ansiballz_cache_dupe_shortname.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/integration/targets/collections/ansiballz_dupe/test_ansiballz_cache_dupe_shortname.yml b/test/integration/targets/collections/ansiballz_dupe/test_ansiballz_cache_dupe_shortname.yml
new file mode 100644
index 0000000..2552624
--- /dev/null
+++ b/test/integration/targets/collections/ansiballz_dupe/test_ansiballz_cache_dupe_shortname.yml
@@ -0,0 +1,15 @@
+- hosts: localhost
+ gather_facts: false
+ tasks:
+ - ping:
+ register: result1
+
+ - ping:
+ collections:
+ - duplicate.name
+ register: result2
+
+ - assert:
+ that:
+ - result1.ping == 'pong'
+ - result2.ping == 'duplicate.name.pong'