diff options
Diffstat (limited to 'test/common/test.sh')
-rw-r--r-- | test/common/test.sh | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/test/common/test.sh b/test/common/test.sh index 773c66f..1282015 100644 --- a/test/common/test.sh +++ b/test/common/test.sh @@ -1,14 +1,13 @@ +#!/bin/bash - #!/bin/bash +set -e - set -e +# Optional: Import test library +source dev-container-features-test-lib - # Optional: Import test library - source dev-container-features-test-lib +# Definition specific tests +check "jq" jq --version +check "curl" curl --version - # Definition specific tests - check "jq" jq --version - check "curl" curl --version - - # Report result - reportResults
\ No newline at end of file +# Report result +reportResults
\ No newline at end of file |