From 1514a26dcaf3767f361578e7a3ea5300346cc190 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Wed, 7 May 2025 00:43:59 +0200 Subject: [PATCH] MT#62763 Use Perl strictures Warned-by: perlcritic Fixes: TestingAndDebugging::RequireUseStrict Fixes: TestingAndDebugging::RequireUseWarnings Change-Id: I3fb45138f6c33ef79bc9956a37f290dd6552885e --- Build.PL | 3 +++ t/spelling.t | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Build.PL b/Build.PL index 51a2ac2..181c706 100644 --- a/Build.PL +++ b/Build.PL @@ -1,3 +1,6 @@ +use strict; +use warnings; + use Module::Build qw(); my $builder = Module::Build->new( module_name => 'Sipwise-Base', diff --git a/t/spelling.t b/t/spelling.t index 0875fdc..4376871 100644 --- a/t/spelling.t +++ b/t/spelling.t @@ -1,3 +1,6 @@ +use strict; +use warnings; + use Test::More import => [qw(plan)]; plan skip_all => 'Author test' unless $ENV{AUTHOR_TESTING};