summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collections/ansiballz_dupe/test_ansiballz_cache_dupe_shortname.yml
blob: 25526246e713b78b40ee0c9b266091bab931aab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'