blob: bc3ed1b2717af7954e8e7969f456fb72d32a392b (
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.testcoll.test_module_2:
- name: Use filter from local collection
assert:
that:
- 1 | testns.testcoll.test_filter(2) == '1:2'
|