From 75bfec6448b44e26c06736253f8ab0197a6652f7 Mon Sep 17 00:00:00 2001 From: John Keeping Date: Sat, 18 May 2013 18:46:38 +0100 Subject: tests: introduce strip_header() helper function This means that we can avoid hardcoding the number of headers we expect CGit to generate in test cases and simply remove whatever headers happen to by there when we are checking body content. Signed-off-by: John Keeping --- tests/setup.sh | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests/setup.sh') diff --git a/tests/setup.sh b/tests/setup.sh index a573444..1d8677a 100755 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -98,4 +98,12 @@ cgit_url() CGIT_CONFIG="$PWD/cgitrc" QUERY_STRING="url=$1" cgit } +strip_headers () { + while read -r line + do + test -z "$line" && break + done + cat +} + test -z "$CGIT_TEST_NO_CREATE_REPOS" && setup_repos -- cgit v1.2.3-59-g8ed1b