3 test_description
='test fetching of oddly-named refs'
6 # afterwards we will have:
8 # refs/for/refs/heads/master - one
9 # refs/heads/master - three
10 test_expect_success
'setup repo with odd suffix ref' '
14 git update-ref refs/for/refs/heads/master HEAD &&
15 echo content >>file &&
16 git commit -a -m two &&
17 echo content >>file &&
18 git commit -a -m three &&
22 test_expect_success
'suffix ref is ignored during fetch' '
23 git clone --bare file://"$PWD" suffix &&
25 git --git-dir=suffix log -1 --format=%s refs/heads/master >actual &&
26 test_cmp expect actual