summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2013-01-06 03:51:07 +0100
committerGuillem Jover <guillem@debian.org>2013-06-22 05:15:04 +0200
commit047cf6685c72fbe837dd2f5feb5a40979ac19226 (patch)
treef10e027f41ea10e78228820f5d4f5f2d26316e68 /test
parente4dbdb84480f844f27501f301cefed6b38ac2221 (diff)
downloaddpkg-047cf6685c72fbe837dd2f5feb5a40979ac19226.tar.gz
perl: Place strict and warning pragma uses as the first thing
Diffstat (limited to 'test')
-rw-r--r--test/000_pod.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/000_pod.t b/test/000_pod.t
index 0282a7d0e..40032779e 100644
--- a/test/000_pod.t
+++ b/test/000_pod.t
@@ -13,11 +13,11 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-use Test::More;
-
use strict;
use warnings;
+use Test::More;
+
eval 'use Test::Pod 1.00';
plan skip_all => 'Test::Pod 1.00 required for testing POD' if $@;
my @poddirs = ( $ENV{srcdir} || '.' );