]> git.vpit.fr Git - perl/modules/rgit.git/blob - t/00-load.t
4fac9643b3f7c5d20bbf1dccc6e867d7ee85ea9e
[perl/modules/rgit.git] / t / 00-load.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 12;
7
8 BEGIN {
9         use_ok( 'App::Rgit' );
10         use_ok( 'App::Rgit::Command' );
11         use_ok( 'App::Rgit::Command::Each' );
12         use_ok( 'App::Rgit::Command::Once' );
13         use_ok( 'App::Rgit::Config' );
14         use_ok( 'App::Rgit::Config::Default' );
15         use_ok( 'App::Rgit::Policy' );
16         use_ok( 'App::Rgit::Policy::Default' );
17         use_ok( 'App::Rgit::Policy::Interactive' );
18         use_ok( 'App::Rgit::Policy::Keep' );
19         use_ok( 'App::Rgit::Repository' );
20         use_ok( 'App::Rgit::Utils' );
21 }
22
23 diag( "Testing App::Rgit $App::Rgit::VERSION, Perl $], $^X" );