mirror of
https://github.com/tests-always-included/mo.git
synced 2024-12-18 16:27:52 +00:00
19 lines
268 B
Plaintext
19 lines
268 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
cd "${0%/*}" || exit 1
|
||
|
. ../run-tests
|
||
|
|
||
|
returnCode=1
|
||
|
person=""
|
||
|
template() {
|
||
|
cat <<EOF
|
||
|
Won't be there: {{> fixtures/partial-missing.partial}}
|
||
|
EOF
|
||
|
}
|
||
|
expected() {
|
||
|
cat <<EOF
|
||
|
cat: partial-missing.partial: No such file or directory
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
runTest
|