instaweb: use 'browser.<tool>.path' config option if it's set.
[git/dscho.git] / t / t9118-git-svn-funky-branch-names.sh
blob640bb066f380d6306ebb76e3dedf38c60cfab0b5
1 #!/bin/sh
3 # Copyright (c) 2007 Eric Wong
6 test_description='git-svn funky branch names'
7 . ./lib-git-svn.sh
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\" &&
13 rm -rf project &&
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!\" &&
18 start_httpd
21 test_expect_success 'test clone with funky branch names' "
22 git svn clone -s \"$svnrepo/pr ject\" project &&
23 cd project &&
24 git rev-parse 'refs/remotes/fun%20plugin' &&
25 git rev-parse 'refs/remotes/more%20fun%20plugin!' &&
26 cd ..
29 test_expect_success 'test dcommit to funky branch' "
30 cd project &&
31 git reset --hard 'refs/remotes/more%20fun%20plugin!' &&
32 echo hello >> foo &&
33 git commit -m 'hello' -- foo &&
34 git svn dcommit &&
35 cd ..
38 stop_httpd
40 test_done