diff options
author | ivan <ivan> | 2010-01-14 02:51:16 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-01-14 02:51:16 +0000 |
commit | 2e165040cb45be2dbb4d68ff1f99b7a38c08114c (patch) | |
tree | 79ae4cee2bafc1baacd74e6595c97036cfd2a406 /t | |
parent | b37129289a0f46bd341e39e44d9000c1c79e92cb (diff) |
fix boilerplate test
Diffstat (limited to 't')
-rw-r--r-- | t/boilerplate.t | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/t/boilerplate.t b/t/boilerplate.t index 8b69a7b..614b531 100644 --- a/t/boilerplate.t +++ b/t/boilerplate.t @@ -36,20 +36,14 @@ sub module_boilerplate_ok { ); } -TODO: { - local $TODO = "Need to replace the boilerplate text"; +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(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) +); - not_in_file_ok(Changes => - "placeholder date/time" => qr(Date/time) - ); - - module_boilerplate_ok('lib/Business/OnlinePayment/PaymenTech.pm'); - - -} +module_boilerplate_ok('lib/Business/OnlinePayment/PaymenTech.pm'); |