Commit f47a7caa9b8d72de1d96d2625b192211df2ade46
1 parent
47bdbe0c
Exists in
master
and in
90 other branches
Add first bits of a test framework test
Showing
3 changed files
with
24 additions
and
0 deletions
Show diff stats
Rakefile
| ... | ... | @@ -0,0 +1,11 @@ |
| 1 | +. $(dirname $0)/test_helper.sh | |
| 2 | + | |
| 3 | +test_colab_config_is_in_place() { | |
| 4 | + assertTrue 'colab settings.yml is in place' 'run_on colab test -f /etc/colab/settings.yml' | |
| 5 | +} | |
| 6 | + | |
| 7 | +test_colab_installed_and_running() { | |
| 8 | + assertTrue 'colab service running' 'run_on colab pgrep -fa colab.wsgi' | |
| 9 | +} | |
| 10 | + | |
| 11 | +. shunit2 | ... | ... |