Re: [PATCH 1/3] test-lib: tests can have multiple prerequisites
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:48:42
Jeff King [off-list ref] writes:
I do wonder if it might be less error-prone to have: test_expect_success PREREQ1 PREREQ2 'desc' 'test' instead of test_expect_success 'PREREQ1 PREREQ2' 'desc' 'test'
Spot what is wrong with this:
test_expect_success make sure we have the repo '
test -d .git
'
I think "we may or may not have a single prereq word" would be less error
prone. (you could make sure "test_have_prereq" gets no lowercase letter
to mitigate the issue, though).
I tend to like the comma myself, but quoted, space separated list is fine
by me.