tpm/test/run

24 lines
344 B
Plaintext
Raw Normal View History

2014-05-24 09:38:41 -04:00
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
run_vagrant() {
2014-05-24 17:18:37 -04:00
vagrant up --provider=docker
2014-05-24 09:38:41 -04:00
}
stop_vagrant() {
2014-07-17 15:12:28 -04:00
vagrant halt
2014-05-24 09:38:41 -04:00
}
run_tests() {
2014-05-24 17:18:37 -04:00
# actually this test file should be run inside vagrant
$CURRENT_DIR/tests/test_plugin_installation.sh
2014-05-24 09:38:41 -04:00
}
main() {
2014-05-24 17:18:37 -04:00
run_vagrant
run_tests
stop_vagrant
2014-05-24 09:38:41 -04:00
}
main