From 8eb6de343b93fdabef2c4cc4be93e2fa8c5898af Mon Sep 17 00:00:00 2001 From: Scott Walters Date: Thu, 30 Sep 2010 12:00:45 -0400 Subject: [PATCH] Load WebGUI::Test before other modules so that it can fix up @INC to point to the main, non-test, libs. Thanks, cj! --- t/Asset/File/ZipArchive.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/Asset/File/ZipArchive.t b/t/Asset/File/ZipArchive.t index 76e6e31ca..814931d41 100644 --- a/t/Asset/File/ZipArchive.t +++ b/t/Asset/File/ZipArchive.t @@ -12,11 +12,12 @@ use FindBin; use strict; use lib "$FindBin::Bin/../../lib"; +use WebGUI::Test; + use WebGUI::Storage; use WebGUI::Asset; use WebGUI::Asset::File::ZipArchive; -use WebGUI::Test; use Test::More; # increment this value for each test you create use Test::Deep; plan tests => 3;