diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-07-27 21:48:27 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-27 21:48:27 -0700 |
commit | 51e383dd08c3d3a389ab4d9780e503a6f49dfc4f (patch) | |
tree | 86e309b0e62fee4173f1b08f6c2657e1f215b172 /t | |
parent | 646e41753568683c3ffde6b7f614f880311cc984 (diff) | |
parent | 3d9be15fc2b8c8198253ae1c4dcaa343b74c3b8d (diff) | |
download | git-51e383dd08c3d3a389ab4d9780e503a6f49dfc4f.tar.gz git-51e383dd08c3d3a389ab4d9780e503a6f49dfc4f.tar.xz |
Merge branch 'extract-remaining' of git://git.bogomips.org/git-svn
* 'extract-remaining' of git://git.bogomips.org/git-svn:
Extract Git::SVN::GlobSpec from git-svn.
Move Git::IndexInfo into its own file.
Load all the modules in one place and before running code.
Extract Git::SVN::Migration from git-svn.
Prepare Git::SVN::Migration for extraction from git-svn.
Extract Git::SVN::Log from git-svn.
Prepare Git::SVN::Log for extraction from git-svn.
Diffstat (limited to 't')
-rw-r--r-- | t/Git-SVN/00compile.t | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/t/Git-SVN/00compile.t b/t/Git-SVN/00compile.t index 97475d920..c92fee453 100644 --- a/t/Git-SVN/00compile.t +++ b/t/Git-SVN/00compile.t @@ -3,7 +3,12 @@ use strict; use warnings; -use Test::More tests => 2; +use Test::More tests => 7; -require_ok 'Git::SVN::Utils'; 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'; +require_ok 'Git::SVN::GlobSpec'; |