renaming tests

This commit is contained in:
Miguel Martinez
2015-06-18 14:42:41 -07:00
parent d23bacb672
commit 0d1b9c9cc8

View File

@@ -19,14 +19,14 @@ teardown() {
fi
}
@test "node and npm in the path" {
@test "node and npm installed" {
run docker exec $CONTAINER_NAME npm -v
[ "$status" = 0 ]
run docker exec $CONTAINER_NAME node -v
[ "$status" = 0 ]
}
@test "python in the path" {
@test "python installed" {
skip
run docker exec $CONTAINER_NAME python -v
[ "$status" = 0 ]