Create branch register_actions.
[catagits/Catalyst-Runtime.git] / t / 04critic.t
1 use strict;
2 use warnings;
3
4 use File::Spec;
5 use FindBin ();
6 use Test::More;
7
8 if ( !-e "$FindBin::Bin/../MANIFEST.SKIP" ) {
9     plan skip_all => 'Critic test only for developers.';
10 }
11 else {
12     eval { require Test::NoTabs };
13     if ( $@ ) {
14         plan tests => 1;
15         fail( 'You must install Test::NoTabs to run 04critic.t' );
16         exit;
17     }
18 }
19
20 Test::NoTabs->import;
21 all_perl_files_ok(qw/lib/);