diff options
author | Michael G. Schwern <schwern@pobox.com> | 2012-07-26 17:26:05 -0700 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2012-07-27 22:36:17 +0000 |
commit | 10c2aa5928b5309374bb4328f1c2849cb4ae65cc (patch) | |
tree | 1b68a9b74290241c38952a21f9bd5a03142d1af1 /t | |
parent | Load all the modules in one place and before running code. (diff) | |
download | tgif-10c2aa5928b5309374bb4328f1c2849cb4ae65cc.tar.xz |
Move Git::IndexInfo into its own file.
Straight cut & paste. Didn't require any fixing.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 't')
-rw-r--r-- | t/Git-SVN/00compile.t | 3 |
1 files changed, 2 insertions, 1 deletions
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'; |