3 # Copyright (c) 2007 Eric Wong
6 test_description
='git-svn funky branch names'
9 test_expect_success
'setup svnrepo' "
10 mkdir project project/trunk project/branches project/tags &&
11 echo foo > project/trunk/foo &&
12 svn import -m '$test_description' project \"$svnrepo/pr ject\" &&
14 svn cp -m 'fun' \"$svnrepo/pr ject/trunk\" \
15 \"$svnrepo/pr ject/branches/fun plugin\" &&
16 svn cp -m 'more fun!' \"$svnrepo/pr ject/branches/fun plugin\" \
17 \"$svnrepo/pr ject/branches/more fun plugin!\" &&
21 test_expect_success
'test clone with funky branch names' "
22 git svn clone -s \"$svnrepo/pr ject\" project &&
24 git rev-parse 'refs/remotes/fun%20plugin' &&
25 git rev-parse 'refs/remotes/more%20fun%20plugin!' &&
29 test_expect_success
'test dcommit to funky branch' "
31 git reset --hard 'refs/remotes/more%20fun%20plugin!' &&
33 git commit -m 'hello' -- foo &&