8b07d46166
* Add a toggle for the leading separator for keyed_groups if no prefix is given * changelog * Add tests for backward compatibility and the new toggle
25 lines
721 B
Bash
Executable file
25 lines
721 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
ansible-inventory -i static_inventory.yml -i constructed.yml --graph | tee out.txt
|
|
|
|
grep '@_hostvalue1' out.txt
|
|
grep '@_item0' out.txt
|
|
grep '@_key0_value0' out.txt
|
|
grep '@prefix_hostvalue1' out.txt
|
|
grep '@prefix_item0' out.txt
|
|
grep '@prefix_key0_value0' out.txt
|
|
grep '@separatorhostvalue1' out.txt
|
|
grep '@separatoritem0' out.txt
|
|
grep '@separatorkey0separatorvalue0' out.txt
|
|
|
|
ansible-inventory -i static_inventory.yml -i no_leading_separator_constructed.yml --graph | tee out.txt
|
|
|
|
grep '@hostvalue1' out.txt
|
|
grep '@item0' out.txt
|
|
grep '@key0_value0' out.txt
|
|
grep '@key0separatorvalue0' out.txt
|
|
grep '@prefix_hostvalue1' out.txt
|
|
grep '@prefix_item0' out.txt
|
|
grep '@prefix_key0_value0' out.txt
|