summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Thykier <niels@thykier.net>2016-05-01 07:16:55 +0000
committerNiels Thykier <niels@thykier.net>2016-05-01 07:16:55 +0000
commit3787545641e4f6756b16deb9aa71c1f63e4cb85c (patch)
tree50ab187fea409654dcdfda9655049fd67223765e
parent6ec3eae0227c32eeb4b08b5da787709e75f56e7b (diff)
downloaddebhelper-3787545641e4f6756b16deb9aa71c1f63e4cb85c.tar.gz
t/size.t: Add use strict + use warnings
Signed-off-by: Niels Thykier <niels@thykier.net>
-rwxr-xr-xt/size.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/size.t b/t/size.t
index a64f6219..94d45dfd 100755
--- a/t/size.t
+++ b/t/size.t
@@ -3,6 +3,8 @@
# Debhelper is supposed to consist of small, simple, easy to understand
# programs. Programs growing in size and complexity without bounds is a
# bug.
+use strict;
+use warnings;
use Test::More;
my @progs=grep { -x $_ } glob("dh_*");