Charles N Wyble
0fc507c735
git-subtree-dir: vendor/git.knownelement.com/reachableceo/MarkdownResume-Pipeline git-subtree-split: 7454badfb02566a9d74a8a70c687daa4a8488850
29 lines
317 B
Bash
Executable File
29 lines
317 B
Bash
Executable File
#!/usr/bin/env bash
|
|
cd "${0%/*}" || exit 1
|
|
. ../run-tests
|
|
|
|
export STR=abc
|
|
export DATA=(111 222)
|
|
template() {
|
|
cat <<EOF
|
|
Issue #7
|
|
{{STR}}
|
|
{{#DATA}}
|
|
Item: {{.}}
|
|
String: {{STR}}
|
|
{{/DATA}}
|
|
EOF
|
|
}
|
|
expected() {
|
|
cat <<EOF
|
|
Issue #7
|
|
abc
|
|
Item: 111
|
|
String: abc
|
|
Item: 222
|
|
String: abc
|
|
EOF
|
|
}
|
|
|
|
runTest
|