mirror of
https://github.com/tests-always-included/mo.git
synced 2024-12-18 16:27:52 +00:00
72a0e426c7
Bash doesn't support advanced data structures, like objects. The goal is to switch simple objects to associative arrays automatically, then override other tests so they don't use deeply-created structures.
23 lines
510 B
Bash
Executable File
23 lines
510 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install or update the specs
|
|
if [[ ! -d spec ]]; then
|
|
git clone https://github.com/mustache/spec.git spec
|
|
else
|
|
(
|
|
cd spec
|
|
git pull
|
|
)
|
|
fi
|
|
|
|
if [[ "$BASH_VERSION" == 3.* ]]; then
|
|
echo "WARNING! Specs assume you are using a version of Bash with associative arrays!"
|
|
fi
|
|
|
|
# Actually run the specs
|
|
node run-spec.js spec/specs/*.json
|
|
|
|
if [[ "$BASH_VERSION" == 3.* ]]; then
|
|
echo "Some tests may have failed because they assume Bash supports associative arays"
|
|
fi
|