summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/plugin_loader/normal/underscore.yml
blob: fb5bbad7fc923151d7c2ea848c9d3756905ffb85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- 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'