Code

Add url of Swedish l10n team in TEAMS file
[git.git] / t / t9145-git-svn-master-branch.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2009 Eric Wong
4 #
5 test_description='git svn initial master branch is "trunk" if possible'
6 . ./lib-git-svn.sh
8 test_expect_success 'setup test repository' '
9         mkdir i &&
10         > i/a &&
11         svn_cmd import -m trunk i "$svnrepo/trunk" &&
12         svn_cmd import -m b/a i "$svnrepo/branches/a" &&
13         svn_cmd import -m b/b i "$svnrepo/branches/b"
14 '
16 test_expect_success 'git svn clone --stdlayout sets up trunk as master' '
17         git svn clone -s "$svnrepo" g &&
18         (
19                 cd g &&
20                 test x`git rev-parse --verify refs/remotes/trunk^0` = \
21                      x`git rev-parse --verify refs/heads/master^0`
22         )
23 '
25 test_done