]> git.vpit.fr Git - perl/modules/rgit.git/commitdiff
Test loading all modules
authorVincent Pit <vince@profvince.com>
Wed, 24 Feb 2010 10:22:00 +0000 (11:22 +0100)
committerVincent Pit <vince@profvince.com>
Wed, 24 Feb 2010 10:22:00 +0000 (11:22 +0100)
t/00-load.t

index 8e32fcd7b4ddcca68807de44e2e90398abe148a5..4fac9643b3f7c5d20bbf1dccc6e867d7ee85ea9e 100644 (file)
@@ -3,13 +3,21 @@
 use strict;
 use warnings;
 
-use Test::More tests => 4;
+use Test::More tests => 12;
 
 BEGIN {
        use_ok( 'App::Rgit' );
        use_ok( 'App::Rgit::Command' );
        use_ok( 'App::Rgit::Command::Each' );
        use_ok( 'App::Rgit::Command::Once' );
+       use_ok( 'App::Rgit::Config' );
+       use_ok( 'App::Rgit::Config::Default' );
+       use_ok( 'App::Rgit::Policy' );
+       use_ok( 'App::Rgit::Policy::Default' );
+       use_ok( 'App::Rgit::Policy::Interactive' );
+       use_ok( 'App::Rgit::Policy::Keep' );
+       use_ok( 'App::Rgit::Repository' );
+       use_ok( 'App::Rgit::Utils' );
 }
 
 diag( "Testing App::Rgit $App::Rgit::VERSION, Perl $], $^X" );