From: Vincent Pit Date: Mon, 9 Mar 2015 15:35:07 +0000 (-0300) Subject: Load Test::More before VPIT::TestHelpers X-Git-Tag: v0.02~19 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Temp.git;a=commitdiff_plain;h=01ee034648a5f1116ca1233b7f987607f0b4576c Load Test::More before VPIT::TestHelpers --- diff --git a/t/12-destroy.t b/t/12-destroy.t index 359add1..4821741 100644 --- a/t/12-destroy.t +++ b/t/12-destroy.t @@ -3,13 +3,13 @@ use strict; use warnings; -use lib 't/lib'; -use VPIT::TestHelpers; - use Variable::Temp 'temp'; use Test::More tests => 16; +use lib 't/lib'; +use VPIT::TestHelpers; + my $x_is_destroyed = 0; my $x_temp1_is_destroyed = 0; my $x_temp2_is_destroyed = 0;