From 803bacf8a5333091eee74eb9870dbbad81a2771f Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Thu, 7 Nov 2019 23:53:34 +0100 Subject: [PATCH] TT#69200 Use strict and warnings We require these with perlcritic, but have not been triggered as these scripts have no shebang, which we will be adding later. Change-Id: I81ac98c9ee72cce9b3446a98e1aae53e4c04b578 --- Build.PL | 3 +++ lib/NGCP/BulkProcessor/Projects/t/create_subscriber.t | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Build.PL b/Build.PL index cb5b94f..f6a0c4c 100644 --- a/Build.PL +++ b/Build.PL @@ -1,3 +1,6 @@ +use strict; +use warnings; + use Module::Build qw(); my $builder = Module::Build->new( dist_name => 'NGCP::BulkProcessor', diff --git a/lib/NGCP/BulkProcessor/Projects/t/create_subscriber.t b/lib/NGCP/BulkProcessor/Projects/t/create_subscriber.t index 52fced2..ede1fe2 100644 --- a/lib/NGCP/BulkProcessor/Projects/t/create_subscriber.t +++ b/lib/NGCP/BulkProcessor/Projects/t/create_subscriber.t @@ -1,3 +1,6 @@ +use strict; +use warnings; + use Net::Domain qw(hostfqdn); use JSON -support_by_pp, -no_export; use Test::More;