From 07acccacdf0c2033dd8c335cca953d028506c683 Mon Sep 17 00:00:00 2001 From: Jim Van Fleet Date: Wed, 27 Jul 2016 15:59:55 -0400 Subject: [PATCH] Checking on working directory during bats invocation --- .gitignore | 1 + tests/download.bats | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9ed152d..f9b8692 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ bin/run.sh bin/test.sh root/** shibboleth-identity-provider.tar.gz +test.log diff --git a/tests/download.bats b/tests/download.bats index 2ce98bb..658f280 100644 --- a/tests/download.bats +++ b/tests/download.bats @@ -3,6 +3,7 @@ load ../common setup() { + echo $PWD > test.log ./bin/download.sh } @@ -19,4 +20,4 @@ setup() { @test "Prunes Shibboleth IDP logs" { run ls root/logs [ "$status" -eq 1 ] -} \ No newline at end of file +}