Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Loading status checks…
Attempt a secure connection to an InCommon SSL site
Jim Van Fleet
committed
Jul 13, 2016
1 parent
31c5a21
commit 6d2c85a
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 ] | ||
} |