1#!/bin/sh2#3# Copyright (c) 2008 Santhosh Kumar Mani456test_description='git-svn can fetch renamed directories'78. ./lib-git-svn.sh910test_expect_success 'load repository with renamed directory' "11svnadmin load -q $rawsvnrepo < ../t9121/renamed-dir.dump12"1314test_expect_success 'init and fetch repository' "15git svn init $svnrepo/newname &&16git svn fetch17"1819test_done20