Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Base container is running - TEST
Chris Bynum committed Aug 3, 2016
1 parent e4b4887 commit 7c1083f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/base.bats
@@ -2,7 +2,13 @@

load ../common

@test "curl should connect to InCommon cert chain site successfully" {

@test "Base container is running" {
run docker inspect $maintainer/$imagename
[ "$status" -eq 0 ]
}

@test "curl can connect to InCommon cert chain site successfully" {
run docker run -i $maintainer/$imagename curl -o /dev/null --silent --head --write-out '%{http_code}\n' https://github.internet2.edu/
echo ${output}
[ "$status" -eq 0 ]

0 comments on commit 7c1083f

Please sign in to comment.