Johannes Schindelin schrieb:
On Fri, 6 Feb 2009, Michael J Gruber wrote:
quoted
+test_expect_success 'handle empty notes gracefully' '
git notes show || test 1 = $?
Completely forgot to mention that I think you want to use test_must_fail
here.
Wouldn't work. We want to differentiate between different exit codes. But
after test_must_fail the exit code is gone. In this simple case this
should work:
git notes show; test 1 = $?
-- Hannes