From 19164b1335c36f7b3ef6f3af0cb2862260bdade6 Mon Sep 17 00:00:00 2001 From: Jim Van Fleet Date: Tue, 2 Aug 2016 16:11:30 -0400 Subject: [PATCH] Download tests are less important --- tests/download.bats | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 tests/download.bats diff --git a/tests/download.bats b/tests/download.bats deleted file mode 100644 index 7077da4..0000000 --- a/tests/download.bats +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env bats - -load ../common - -setup() { - echo $PWD > test.log - ./bin/download.sh -} - -@test "Downloads a Shibboleth IDP tree" { - result="$(ls root/conf/idp.properties)" - [ "$result" = 'root/conf/idp.properties' ] -} - -@test "Prunes Shibboleth IDP binaries" { - run find root/bin - [ "$status" -eq 1 ] -} - -@test "Prunes Shibboleth IDP logs" { - run find root/logs - [ "$status" -eq 1 ] -}