From: Florian Ragwitz Date: Sun, 22 Feb 2009 19:48:29 +0000 (+0000) Subject: Fix test fail by adding t/lib to @INC. X-Git-Tag: 0.10~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Types.git;a=commitdiff_plain;h=1616a2ca31163adf109f255c2240aff10801814c Fix test fail by adding t/lib to @INC. --- diff --git a/t/16_introspection.t b/t/16_introspection.t index 688baec..a814d34 100644 --- a/t/16_introspection.t +++ b/t/16_introspection.t @@ -5,6 +5,9 @@ use warnings; use Data::Dump qw( pp ); use Test::More tests => 1; +use FindBin; +use lib "$FindBin::Bin/lib"; + do { package IntrospectionTest; use IntrospectTypeExports __PACKAGE__, qw( TwentyThree NonEmptyStr MyNonEmptyStr );