Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t/Git-SVN
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2012-07-27 04:26:01 +0400
committerEric Wong <normalperson@yhbt.net>2012-07-28 02:36:06 +0400
commitb74fda1c9b332b1216cc4d02ec256d6e350d5524 (patch)
tree2c222882f67cc65186db4b69ab03115c741a0f4c /t/Git-SVN
parent2c96a6c3f1256d94d5f97fb9e0bdeafb8c0224b4 (diff)
Extract Git::SVN::Log from git-svn.
Straight cut & paste. Also noticed Git::SVN::Ra wasn't in the compile test. It is now. Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 't/Git-SVN')
-rw-r--r--t/Git-SVN/00compile.t6
1 files changed, 4 insertions, 2 deletions
diff --git a/t/Git-SVN/00compile.t b/t/Git-SVN/00compile.t
index 97475d920c..37626f4284 100644
--- a/t/Git-SVN/00compile.t
+++ b/t/Git-SVN/00compile.t
@@ -3,7 +3,9 @@
use strict;
use warnings;
-use Test::More tests => 2;
+use Test::More tests => 4;
-require_ok 'Git::SVN::Utils';
require_ok 'Git::SVN';
+require_ok 'Git::SVN::Utils';
+require_ok 'Git::SVN::Ra';
+require_ok 'Git::SVN::Log';