The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
## name standard pass
## failures 0
## cut

use strict;
no strict;

#-----------------------------------------------------------------------------

## name standard fail
## failures 1
## cut

use strict;
no strict;
print 1;
print 2;
print 3;
print 4;

#-----------------------------------------------------------------------------

## name pass that's almost to fail
## failures 0
## cut

use strict;
no strict;
print 1;
print 2;
print 3;

#-----------------------------------------------------------------------------

## name in a block
## failures 0
## cut

use strict;
sub foo {
    no strict;
}
print 1;
print 2;
print 3;
print 4;

#-----------------------------------------------------------------------------

## name long fail in a block
## failures 1
## cut

use strict;
sub foo {
    no strict;
    print 1;
    print 2;
    print 3;
    print 4;
}

#-----------------------------------------------------------------------------

## name config override
## failures 0
## parms { statements => 6 }
## cut

use strict;
sub foo {
    no strict;
    print 1;
    print 2;
    print 3;
    print 4;
    print 5;
    print 6;
}

#-----------------------------------------------------------------------------

##############################################################################
#      $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/distributions/Perl-Critic/t/TestingAndDebugging/ProhibitProlongedStrictureOverride.run $
#     $Date: 2009-02-15 11:10:42 -0600 (Sun, 15 Feb 2009) $
#   $Author: clonezone $
# $Revision: 3116 $
##############################################################################

# Local Variables:
#   mode: cperl
#   cperl-indent-level: 4
#   fill-column: 78
#   indent-tabs-mode: nil
#   c-indentation-style: bsd
# End:
# ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :