diff options
author | Matt Martz <matt@sivel.net> | 2022-02-23 21:10:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-23 21:10:43 +0100 |
commit | 8cbe1435c2938facb7a7ccb4255bf1feeecd2921 (patch) | |
tree | 07eb3bed03924ac5a0bbe49aacd336a14bd29d22 /test/integration/targets/collections/ansiballz_dupe | |
parent | ansible-test - Remove validate-modules symlink. (diff) | |
download | ansible-8cbe1435c2938facb7a7ccb4255bf1feeecd2921.tar.xz ansible-8cbe1435c2938facb7a7ccb4255bf1feeecd2921.zip |
Use full python package for ansiballz cache filenames (#77090)
* Use full python package for ansiballz cache filenames
* Be a little more explicit about test goals
Diffstat (limited to 'test/integration/targets/collections/ansiballz_dupe')
2 files changed, 18 insertions, 0 deletions
diff --git a/test/integration/targets/collections/ansiballz_dupe/collections/ansible_collections/duplicate/name/plugins/modules/ping.py b/test/integration/targets/collections/ansiballz_dupe/collections/ansible_collections/duplicate/name/plugins/modules/ping.py new file mode 100644 index 0000000000..d0fdba7678 --- /dev/null +++ b/test/integration/targets/collections/ansiballz_dupe/collections/ansible_collections/duplicate/name/plugins/modules/ping.py @@ -0,0 +1,3 @@ +#!/usr/bin/python +from ansible.module_utils.basic import AnsibleModule +AnsibleModule({}).exit_json(ping='duplicate.name.pong') 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 0000000000..25526246e7 --- /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' |