diff --git a/tests/image-test.bats b/tests/image-test.bats new file mode 100644 index 0000000..8fb9b36 --- /dev/null +++ b/tests/image-test.bats @@ -0,0 +1,8 @@ +#!/usr/bin/env bats +load ../common + +@test "Build Docker Image" { + result=$(bin/build.sh |grep -c "Successfully built*") + [ $result = 1 ] + +}