You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/plugin_loader/normal/underscore.yml

16 lines
338 B
YAML

- hosts: testhost
gather_facts: false
tasks:
- name: Load a deprecated module
underscore:
register: res
- name: Load a deprecated module that is a symlink
symlink:
register: sym
- assert:
that:
- res.source == 'legacy_library_dir'
- sym.source == 'legacy_library_dir'