Add ARM files
[dh-make-perl] / dev / arm / libperl-critic-perl / libperl-critic-perl-1.088 / t / ValuesAndExpressions / ProhibitInterpolationOfLiterals.run
diff --git a/dev/arm/libperl-critic-perl/libperl-critic-perl-1.088/t/ValuesAndExpressions/ProhibitInterpolationOfLiterals.run b/dev/arm/libperl-critic-perl/libperl-critic-perl-1.088/t/ValuesAndExpressions/ProhibitInterpolationOfLiterals.run
new file mode 100644 (file)
index 0000000..7031817
--- /dev/null
@@ -0,0 +1,83 @@
+## name Basic failure
+## failures 2
+## cut
+
+print "this is literal";
+print qq{this is literal};
+
+#-----------------------------------------------------------------------------
+
+## name Basic passing
+## failures 0
+## cut
+
+print 'this is literal';
+print q{this is literal};
+
+#-----------------------------------------------------------------------------
+
+## name Code with all delimiters in configuration
+## failures 0
+## parms {allow => 'qq( qq{ qq[ qq/'}
+## cut
+
+$sql = qq(select foo from bar);
+$sql = qq{select foo from bar};
+$sql = qq[select foo from bar];
+$sql = qq/select foo from bar/;
+
+is( pcritique($policy, \$code, \%config), 0, $policy);
+
+#-----------------------------------------------------------------------------
+
+## name Code with not all delimiters in configuration
+## failures 2
+## parms {allow => 'qq( qq{'}
+## cut
+
+$sql = qq(select foo from bar);
+$sql = qq{select foo from bar};
+$sql = qq[select foo from bar];
+$sql = qq/select foo from bar/;
+
+#-----------------------------------------------------------------------------
+
+## name Configuration with only delimiters, no operators
+## failures 2
+## parms {allow => '() {}'}
+## cut
+
+$sql = qq(select foo from bar);
+$sql = qq{select foo from bar};
+$sql = qq[select foo from bar];
+$sql = qq/select foo from bar/;
+
+#-----------------------------------------------------------------------------
+
+## name Configuration with matching closing delimiters
+## failures 2
+## parms {allow => 'qq() qq{}'}
+## cut
+
+$sql = qq(select foo from bar);
+$sql = qq{select foo from bar};
+$sql = qq[select foo from bar];
+$sql = qq/select foo from bar/;
+
+#-----------------------------------------------------------------------------
+
+##############################################################################
+#      $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/Perl-Critic/t/ValuesAndExpressions/ProhibitInterpolationOfLiterals.run $
+#     $Date: 2008-03-16 17:40:45 -0500 (Sun, 16 Mar 2008) $
+#   $Author: clonezone $
+# $Revision: 2187 $
+##############################################################################
+
+# 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 :