ReachableCEO-Profile-FullTi.../vendor/git.knownelement.com/ExternalVendorCode/mo/tests/source

26 lines
275 B
Plaintext
Raw Permalink Normal View History

#!/usr/bin/env bash
cd "${0%/*}" || exit 1
. ../run-tests
export arguments=(--source=fixtures/source.vars)
template() {
cat <<EOF
{{VAR}}
{{#ARR}}
* {{.}}
{{/ARR}}
{{ASSOC_ARR.a}} {{ASSOC_ARR.b}}
EOF
}
expected() {
cat <<EOF
value
* 1
* 2
* 3
AAA BBB
EOF
}
runTest