aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rwxr-xr-xtests/t0107-snapshot.sh14
1 files changed, 4 insertions, 10 deletions
diff --git a/tests/t0107-snapshot.sh b/tests/t0107-snapshot.sh
index 053062c..7e6f5bf 100755
--- a/tests/t0107-snapshot.sh
+++ b/tests/t0107-snapshot.sh
@@ -54,27 +54,21 @@ test_expect_success 'strip off the header lines (zip)' '
tail -n +6 tmp >master.zip
'
-if test -n "$(which unzip 2>/dev/null)"; then
- test_set_prereq UNZIP
-else
- say 'Skipping ZIP validation tests: unzip not found'
-fi
-
-test_expect_success UNZIP 'verify zip format' '
+test_expect_success 'verify zip format' '
unzip -t master.zip
'
-test_expect_success UNZIP 'unzip' '
+test_expect_success 'unzip' '
rm -rf master &&
unzip master.zip
'
-test_expect_success UNZIP 'count files (zip)' '
+test_expect_success 'count files (zip)' '
ls master/ >output &&
test_line_count = 5 output
'
-test_expect_success UNZIP 'verify unzipped file-5' '
+test_expect_success 'verify unzipped file-5' '
grep "^5$" master/file-5 &&
test_line_count = 1 master/file-5
'