t / t9121-git-svn-fetch-renamed-dir.shon commit Merge branch 'master' of github.com:linusboyle/git (e9376a5)
   1#!/bin/sh
   2#
   3# Copyright (c) 2008 Santhosh Kumar Mani
   4
   5
   6test_description='git svn can fetch renamed directories'
   7
   8. ./lib-git-svn.sh
   9
  10test_expect_success 'load repository with renamed directory' '
  11        svnadmin load -q "$rawsvnrepo" < "$TEST_DIRECTORY"/t9121/renamed-dir.dump
  12        '
  13
  14test_expect_success 'init and fetch repository' '
  15        git svn init "$svnrepo/newname" &&
  16        git svn fetch
  17        '
  18
  19test_done
  20