Revision 0e8c09263e87c548de006cdb6af035d42f845087 authored by Junio C Hamano on 25 March 2014, 18:08:19 UTC, committed by Junio C Hamano on 25 March 2014, 18:08:19 UTC
* nd/index-pack-error-message:
  index-pack: report error using the correct variable
2 parent s 66d9133 + de983a0
Raw File
t4136-apply-check.sh
#!/bin/sh

test_description='git apply should exit non-zero with unrecognized input.'

. ./test-lib.sh

test_expect_success 'setup' '
	test_commit 1
'

test_expect_success 'apply --check exits non-zero with unrecognized input' '
	test_must_fail git apply --check - <<-\EOF
	I am not a patch
	I look nothing like a patch
	git apply must fail
	EOF
'

test_done
back to top