Add "mo" from "ssh://git@git.knownelement.com:29418/ExternalVendorCode/mo.git@master"

git-vendor-name: mo
git-vendor-dir: vendor/git@git.knownelement.com/29418/ExternalVendorCode/mo
git-vendor-repository: ssh://git@git.knownelement.com:29418/ExternalVendorCode/mo.git
git-vendor-ref: master
This commit is contained in:
2025-07-14 12:08:24 -05:00
86 changed files with 5225 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
#!/usr/bin/env bash
cd "${0%/*}" || exit 1
. ../run-tests
export name=Willy
MO_ALLOW_FUNCTION_ARGUMENTS=true
pipeTo() {
cat | "$1"
}
testArgs() {
printf "%d" "$#"
# Display all arguments
printf " %q" ${@+"$@"}
}
template() {
cat <<EOF
No args: {{testArgs}} - done
One arg: {{testArgs 'one'}} - done
Getting name in a string: {{testArgs {"The name is " name}}} - done
Reverse this: {{#pipeTo "rev"}}abcde{{/pipeTo "rev"}}
EOF
}
expected() {
cat <<EOF
No args: 0 '' - done
One arg: 1 one - done
Getting name in a string: 1 The\ name\ is\ Willy - done
Reverse this: edcba
EOF
}
runTest