1#!/bin/sh
2#
3# Copyright (c) 2008 Santhosh Kumar Mani
45
6
test_description='git-svn can fetch renamed directories'
78
. ./lib-git-svn.sh
910
test_expect_success 'load repository with renamed directory' "
11svnadmin load -q $rawsvnrepo < ../t9121/renamed-dir.dump
12"
1314
test_expect_success 'init and fetch repository' "
15git svn init $svnrepo/newname &&
16git svn fetch
17"
1819
test_done
20