mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
fb23bd7af2
Take advantage of write_script() to abstract-away details of shell script creation, thus allowing the reader to focus on script content. Readability benefits, particularly in this case, since the script body was buried in a noisy one-liner subshell responsible for emitting boilerplate and body. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
25 lines
489 B
Bash
Executable file
25 lines
489 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='remote push rejects are reported by client'
|
|
|
|
. ./test-lib.sh
|
|
|
|
test_expect_success 'setup' '
|
|
mkdir .git/hooks &&
|
|
write_script .git/hooks/update <<-\EOF &&
|
|
exit 1
|
|
EOF
|
|
echo 1 >file &&
|
|
git add file &&
|
|
git commit -m 1 &&
|
|
git clone . child &&
|
|
cd child &&
|
|
echo 2 >file &&
|
|
git commit -a -m 2
|
|
'
|
|
|
|
test_expect_success 'push reports error' 'test_must_fail git push 2>stderr'
|
|
|
|
test_expect_success 'individual ref reports error' 'grep rejected stderr'
|
|
|
|
test_done
|