diff options
-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'); |