X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F00-load.t;h=df9d02d8847c24f7c6e084ec12c281c4fbbde2ea;hb=3c8fbdcb1480e5d245448b8fa2f99fa36c489cf2;hp=8e32fcd7b4ddcca68807de44e2e90398abe148a5;hpb=19bee8f647bfe6c94c5cb3cf6a60d7a43cbca222;p=perl%2Fmodules%2Frgit.git diff --git a/t/00-load.t b/t/00-load.t index 8e32fcd..df9d02d 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -3,13 +3,22 @@ use strict; use warnings; -use Test::More tests => 4; +use Test::More tests => 13; 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::Guard' ); + 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" );