]> git.ipfire.org Git - thirdparty/git.git/blob - t/t9135-git-svn-moved-branch-empty-file.sh
Merge commit 'b319ef7' into jc/maint-fix-test-perm
[thirdparty/git.git] / t / t9135-git-svn-moved-branch-empty-file.sh
1 #!/bin/sh
2
3 test_description='test moved svn branch with missing empty files'
4
5 . ./lib-git-svn.sh
6 test_expect_success 'load svn dumpfile' '
7 svnadmin load "$rawsvnrepo" < "${TEST_DIRECTORY}/t9135/svn.dump"
8 '
9
10 test_expect_success 'clone using git svn' 'git svn clone -s "$svnrepo" x'
11
12 test_expect_success 'test that b1 exists and is empty' '
13 (cd x && test -f b1 && ! test -s b1)
14 '
15
16 test_done