summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/inventory/strategy.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/inventory/strategy.yml')
-rw-r--r--test/integration/targets/inventory/strategy.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/integration/targets/inventory/strategy.yml b/test/integration/targets/inventory/strategy.yml
new file mode 100644
index 0000000..5c1cbd2
--- /dev/null
+++ b/test/integration/targets/inventory/strategy.yml
@@ -0,0 +1,12 @@
+- name: Check that 'invalid' group works, problem exposed in #58980
+ hosts: localhost
+ tasks:
+ - name: add a host to a group, that has - to trigger substitution
+ add_host:
+ name: localhost
+ groups: Not-Working
+
+ - name: group hosts by distribution, with dash to trigger substitution
+ group_by:
+ key: "{{ ansible_distribution }}-{{ ansible_distribution_version }}"
+ changed_when: false