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 ] -}