From b74fda1c9b332b1216cc4d02ec256d6e350d5524 Mon Sep 17 00:00:00 2001 From: "Michael G. Schwern" Date: Thu, 26 Jul 2012 17:26:01 -0700 Subject: 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 --- t/Git-SVN/00compile.t | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 't') 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'; -- cgit v1.2.1 From b772cb9994e085c4a55820092011ee2b8997b0ac Mon Sep 17 00:00:00 2001 From: "Michael G. Schwern" Date: Thu, 26 Jul 2012 17:26:03 -0700 Subject: Extract Git::SVN::Migration from git-svn. Straight cut & paste. Signed-off-by: Eric Wong --- t/Git-SVN/00compile.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 't') diff --git a/t/Git-SVN/00compile.t b/t/Git-SVN/00compile.t index 37626f4284..1307b65e8c 100644 --- a/t/Git-SVN/00compile.t +++ b/t/Git-SVN/00compile.t @@ -3,9 +3,10 @@ use strict; use warnings; -use Test::More tests => 4; +use Test::More tests => 5; require_ok 'Git::SVN'; require_ok 'Git::SVN::Utils'; require_ok 'Git::SVN::Ra'; require_ok 'Git::SVN::Log'; +require_ok 'Git::SVN::Migration'; -- cgit v1.2.1 From 10c2aa5928b5309374bb4328f1c2849cb4ae65cc Mon Sep 17 00:00:00 2001 From: "Michael G. Schwern" Date: Thu, 26 Jul 2012 17:26:05 -0700 Subject: Move Git::IndexInfo into its own file. Straight cut & paste. Didn't require any fixing. Signed-off-by: Eric Wong --- t/Git-SVN/00compile.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 't') diff --git a/t/Git-SVN/00compile.t b/t/Git-SVN/00compile.t index 1307b65e8c..5419438746 100644 --- a/t/Git-SVN/00compile.t +++ b/t/Git-SVN/00compile.t @@ -3,10 +3,11 @@ use strict; use warnings; -use Test::More tests => 5; +use Test::More tests => 6; require_ok 'Git::SVN'; require_ok 'Git::SVN::Utils'; require_ok 'Git::SVN::Ra'; require_ok 'Git::SVN::Log'; require_ok 'Git::SVN::Migration'; +require_ok 'Git::IndexInfo'; -- cgit v1.2.1 From 3d9be15fc2b8c8198253ae1c4dcaa343b74c3b8d Mon Sep 17 00:00:00 2001 From: "Michael G. Schwern" Date: Thu, 26 Jul 2012 17:26:06 -0700 Subject: Extract Git::SVN::GlobSpec from git-svn. Straight cut & paste. That's the last class. * Make Git::SVN load it on its own, its the only thing that needs it. Signed-off-by: Eric Wong --- t/Git-SVN/00compile.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 't') diff --git a/t/Git-SVN/00compile.t b/t/Git-SVN/00compile.t index 5419438746..c92fee453f 100644 --- a/t/Git-SVN/00compile.t +++ b/t/Git-SVN/00compile.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 6; +use Test::More tests => 7; require_ok 'Git::SVN'; require_ok 'Git::SVN::Utils'; @@ -11,3 +11,4 @@ require_ok 'Git::SVN::Ra'; require_ok 'Git::SVN::Log'; require_ok 'Git::SVN::Migration'; require_ok 'Git::IndexInfo'; +require_ok 'Git::SVN::GlobSpec'; -- cgit v1.2.1