From 6d2c85ae4449d8fd80b177b3a891381d67539c7d Mon Sep 17 00:00:00 2001 From: Jim Van Fleet Date: Wed, 13 Jul 2016 10:07:40 -0400 Subject: [PATCH] Attempt a secure connection to an InCommon SSL site --- tests/base.bats | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/base.bats b/tests/base.bats index 1ede21d..8dbcf2a 100644 --- a/tests/base.bats +++ b/tests/base.bats @@ -1,6 +1,6 @@ #!/usr/bin/env bats -@test "addition using bc" { - result="$(echo 2+2 | bc)" - [ "$result" -eq 4 ] +@test "curl should connect to InCommon cert chain site successfully" { + run "docker run -it tier/centos7base curl https://github.internet2.edu/" + [ "$status" -eq 0 ] } \ No newline at end of file