blob: 47b097d51f04c84fb35d6d9fefaf077a08b6a138 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- name: Use module and filter plugin from local collection
hosts: localhost
tasks:
- name: Use module from local collection
testns.test_collection.test_module_2:
- name: Use filter from local collection
ansible.builtin.assert:
that:
- 1 | testns.test_collection.test_filter(2) == '1:2'
|