From a759d964e40d160d901052ec90e53c5acbe60355 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 24 Apr 2014 03:21:44 +0200 Subject: Turns out aliases were a bad idea. --- tests/t0400-grep.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tests/t0400-grep.sh') diff --git a/tests/t0400-grep.sh b/tests/t0400-grep.sh index 0c55cf8..808a720 100755 --- a/tests/t0400-grep.sh +++ b/tests/t0400-grep.sh @@ -4,13 +4,13 @@ test_description='Grep check' . ./setup.sh test_expect_success 'Make sure grep prints normal lines' ' - pass init $KEY1 && - pass insert -e blah1 <<<"hello" && - pass insert -e blah2 <<<"my name is" && - pass insert -e folder/blah3 <<<"I hate computers" && - pass insert -e blah4 <<<"me too!" && - pass insert -e folder/where/blah5 <<<"They are hell" && - results="$(pass grep hell)" && + "$PASS" init $KEY1 && + "$PASS" insert -e blah1 <<<"hello" && + "$PASS" insert -e blah2 <<<"my name is" && + "$PASS" insert -e folder/blah3 <<<"I hate computers" && + "$PASS" insert -e blah4 <<<"me too!" && + "$PASS" insert -e folder/where/blah5 <<<"They are hell" && + results="$("$PASS" grep hell)" && [[ $(wc -l <<<"$results") -eq 4 ]] && grep -q blah5 <<<"$results" && grep -q blah1 <<<"$results" && -- cgit v1.2.3