summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/plugin_loader/override/filters.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/plugin_loader/override/filters.yml')
-rw-r--r--test/integration/targets/plugin_loader/override/filters.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/integration/targets/plugin_loader/override/filters.yml b/test/integration/targets/plugin_loader/override/filters.yml
new file mode 100644
index 0000000..e51ab4e
--- /dev/null
+++ b/test/integration/targets/plugin_loader/override/filters.yml
@@ -0,0 +1,15 @@
+- hosts: testhost
+ gather_facts: false
+ tasks:
+ - name: ensure local 'flag' filter works, 'flatten' is overriden and 'ternary' is still from core
+ assert:
+ that:
+ - a|flag == 'flagged'
+ - a|flatten != [1, 2, 3, 4, 5]
+ - a|flatten == "flagged"
+ - a|ternary('yes', 'no') == 'yes'
+ vars:
+ a:
+ - 1
+ - 2
+ - [3, 4, 5]