From: Vincent Pit Date: Wed, 24 Feb 2010 10:22:00 +0000 (+0100) Subject: Test loading all modules X-Git-Tag: v0.07~20 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Frgit.git;a=commitdiff_plain;h=e24fcce942bbff836770d333a4a919a26872db6d Test loading all modules --- diff --git a/t/00-load.t b/t/00-load.t index 8e32fcd..4fac964 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -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" );