1#!/bin/sh
   2#
   3# Copyright (c) 2008 Alec Berryman
   4test_description='git svn fetch repository with deleted and readded directory'
   6. ./lib-git-svn.sh
   8# Don't run this by default; it opens up a port.
  10require_svnserve
  11test_expect_success 'load repository' '
  13    svnadmin load -q "$rawsvnrepo" < "$TEST_DIRECTORY"/t9126/follow-deleted-readded.dump
  14    '
  15test_expect_success 'fetch repository' '
  17    start_svnserve &&
  18    git svn init svn://127.0.0.1:$SVNSERVE_PORT &&
  19    git svn fetch
  20    '
  21test_done