Add ARM files
[dh-make-perl] / dev / arm / libperl-critic-perl / libperl-critic-perl-1.088 / t / TestingAndDebugging / RequireUseStrict.run
diff --git a/dev/arm/libperl-critic-perl/libperl-critic-perl-1.088/t/TestingAndDebugging/RequireUseStrict.run b/dev/arm/libperl-critic-perl/libperl-critic-perl-1.088/t/TestingAndDebugging/RequireUseStrict.run
new file mode 100644 (file)
index 0000000..a98228c
--- /dev/null
@@ -0,0 +1,161 @@
+## name one statement before strict
+## failures 1
+## cut
+
+$foo = $bar;
+use strict;
+
+#-----------------------------------------------------------------------------
+
+## name several statements before strict
+## failures 1
+## cut
+
+$foo = $bar;   ## This one violates.
+$baz = $nuts;  ## no critic;  This one is exempted
+$blamo;        ## This one should be squelched
+use strict;
+
+#-----------------------------------------------------------------------------
+
+## name several statements before strict with maximum violations changed
+## failures 2
+## parms { maximum_violations_per_document => 2 }
+## cut
+
+$foo = $bar;   ## This one violates.
+$baz = $nuts;  ## This one violates.
+$blamo;        ## This one should be squelched
+use strict;
+
+#-----------------------------------------------------------------------------
+
+## name no strict at all
+## failures 1
+## cut
+
+$foo = $bar;
+
+#-----------------------------------------------------------------------------
+
+## name require strict
+## failures 1
+## cut
+
+require strict;
+1;
+
+#-----------------------------------------------------------------------------
+
+## name strictures used, but no code
+## failures 0
+## cut
+
+use strict;
+
+#-----------------------------------------------------------------------------
+
+## name no strict at all, w/END
+## failures 1
+## cut
+
+$foo = $bar;
+
+#Should not find the rest of these
+
+__END__
+
+=head1 NAME
+
+Foo - A Foo factory class
+
+=cut
+
+#-----------------------------------------------------------------------------
+
+## name no strict at all, w/DATA
+## failures 1
+## cut
+
+$foo = $bar;
+
+#Should not find the rest of these
+
+__DATA__
+
+Fred
+Barney
+Wilma
+
+#-----------------------------------------------------------------------------
+
+## name strictures used OK
+## failures 0
+## cut
+
+use strict;
+$foo = $bar;
+
+#-----------------------------------------------------------------------------
+
+## name other module included before strict
+## failures 0
+## cut
+
+use Module;
+use strict;
+$foo = $bar;
+
+#-----------------------------------------------------------------------------
+
+## name package statement before strict
+## failures 0
+## cut
+
+package FOO;
+use strict;
+$foo = $bar;
+
+#-----------------------------------------------------------------------------
+
+## name Work around a PPI bug that doesn't return a location for C<({})>.
+## failures 1
+## cut
+
+({})
+
+#-----------------------------------------------------------------------------
+
+## name Moose support
+## failures 0
+## cut
+
+use Moose;
+$foo = $bar;
+
+#-----------------------------------------------------------------------------
+
+## name Moose::Role support
+## failures 0
+## cut
+
+use Moose::Role;
+$foo = $bar;
+
+#-----------------------------------------------------------------------------
+
+##############################################################################
+#      $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/Perl-Critic/t/TestingAndDebugging/RequireUseStrict.run $
+#     $Date: 2008-04-13 21:16:24 -0500 (Sun, 13 Apr 2008) $
+#   $Author: clonezone $
+# $Revision: 2242 $
+##############################################################################
+
+# 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 :