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