1#! /usr/bin/perl -Tw
2
3use strict;
4use warnings;
5
6use Test::More;
7eval "use Test::Perl::Critic (-profile => 't/developer/perlcriticrc')";
8plan skip_all => "Test::Perl::Critic required for criticism" if $@;
9all_critic_ok();
10
11
12