25 lines
228 B
Plaintext
25 lines
228 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
cd "${0%/*}" || exit 1
|
||
|
. ../run-tests
|
||
|
|
||
|
export content=$'<\n->'
|
||
|
template() {
|
||
|
cat <<'EOF'
|
||
|
\
|
||
|
{{>fixtures/standalone-indentation.partial}}
|
||
|
/
|
||
|
EOF
|
||
|
}
|
||
|
expected() {
|
||
|
cat <<'EOF'
|
||
|
\
|
||
|
|
|
||
|
<
|
||
|
->
|
||
|
|
|
||
|
/
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
runTest
|