summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/roles_var_inheritance/runme.sh
blob: 791155a852510f3221e787f58490c0cb6dd688d6 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

set -eux

ansible-playbook -i ../../inventory play.yml "$@" | tee out.txt

test "$(grep out.txt -ce '"nested_var": "A"')" == 1
test "$(grep out.txt -ce '"nested_var": "B"')" == 1
test "$(grep out.txt -ce '"var_precedence": "dependency"')" == 2