summaryrefslogtreecommitdiff
path: root/t/t_boilerplate.t
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-02-12 14:27:41 -0800
committerIvan Kohler <ivan@freeside.biz>2015-02-12 14:27:41 -0800
commit28425f2f6ecee736d64cf6a45a74dc4f4992edbd (patch)
tree0087ff57298a6a175a95c0d3ec647fd28404e6a6 /t/t_boilerplate.t
parent59dc9c0128f8c9258c9ec80f11754dd1e7ecf26e (diff)
- Update for production URL
- Use username/password for auth like other B:OP modules - Fix tests - Remove extraneous extra/ stuff in repo
Diffstat (limited to 't/t_boilerplate.t')
-rw-r--r--t/t_boilerplate.t49
1 files changed, 0 insertions, 49 deletions
diff --git a/t/t_boilerplate.t b/t/t_boilerplate.t
deleted file mode 100644
index 50696af..0000000
--- a/t/t_boilerplate.t
+++ /dev/null
@@ -1,49 +0,0 @@
-#!perl -T
-
-use strict;
-use warnings;
-use Test::More tests => 3;
-
-sub not_in_file_ok {
- my ($filename, %regex) = @_;
- open( my $fh, '<', $filename )
- or die "couldn't open $filename for reading: $!";
-
- my %violated;
-
- while (my $line = <$fh>) {
- while (my ($desc, $regex) = each %regex) {
- if ($line =~ $regex) {
- push @{$violated{$desc}||=[]}, $.;
- }
- }
- }
-
- if (%violated) {
- fail("$filename contains boilerplate text");
- diag "$_ appears on lines @{$violated{$_}}" for keys %violated;
- } else {
- pass("$filename contains no boilerplate text");
- }
-}
-
-sub module_boilerplate_ok {
- my ($module) = @_;
- not_in_file_ok($module =>
- 'the great new $MODULENAME' => qr/ - The great new /,
- 'boilerplate description' => qr/Quick summary of what the module/,
- 'stub function definition' => qr/function[12]/,
- );
-}
-
- not_in_file_ok(README =>
- "The README is used..." => qr/The README is used/,
- "'version information here'" => qr/to provide version information/,
- );
-
- not_in_file_ok(Changes =>
- "placeholder date/time" => qr(Date/time)
- );
-
- module_boilerplate_ok('lib/Business/OnlinePayment/vSecureProcessing.pm');
-