Sha256: 77d71e409cf1d8bec5370fe4e8429c2417a45d02519335c166fa0cd540817e97
Contents?: true
Size: 679 Bytes
Versions: 4
Compression:
Stored size: 679 Bytes
Contents
#!/usr/bin/env bash set -e # Ensure that we are running this from the root of the project. If the script is # run from anywhere else, the cassettes end up in the wrong directory. echo "---> Running setup checks" if [[ ! -f "README.md" ]] ; then echo " Test suite is not being run from the project root." echo " Please change to the root and re-run the test suite." exit 1 fi echo "---> Pre-checks all passed" # Bundle it all up. echo "---> Fetching all dependencies" bundle install | sed "s/^/ /" echo "---> Bundling completed" # Run the test suite. echo "---> Starting test suite" bundle exec rspec spec | sed "s/^/ /" echo "---> Test suite completed"
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
acquia_toolbelt-2.4.1 | script/test |
acquia_toolbelt-2.4.0 | script/test |
acquia_toolbelt-2.3.2 | script/test |
acquia_toolbelt-2.3.1 | script/test |