3 test_description
='test noop fetch negotiator'
6 test_expect_success
'noop negotiator does not emit any "have"' '
9 test_create_repo server &&
10 test_commit -C server to_fetch &&
12 test_create_repo client &&
13 test_commit -C client we_have &&
15 test_config -C client fetch.negotiationalgorithm noop &&
16 GIT_TRACE_PACKET="$(pwd)/trace" git -C client fetch "$(pwd)/server" &&
18 ! grep "fetch> have" trace &&
19 grep "fetch> done" trace