]> git.vpit.fr Git - perl/modules/rgit.git/blob - t/00-load.t
Update VPIT::TestHelpers to 15e8aee3
[perl/modules/rgit.git] / t / 00-load.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 13;
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::Guard' );
16  use_ok( 'App::Rgit::Policy' );
17  use_ok( 'App::Rgit::Policy::Default' );
18  use_ok( 'App::Rgit::Policy::Interactive' );
19  use_ok( 'App::Rgit::Policy::Keep' );
20  use_ok( 'App::Rgit::Repository' );
21  use_ok( 'App::Rgit::Utils' );
22 }
23
24 diag( "Testing App::Rgit $App::Rgit::VERSION, Perl $], $^X" );