X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F23-path_env.t;h=8035842b14daf59b275b25f749fa48516b2d9210;hb=64fa55fd5956658cf77b4d7142df46707a968c20;hp=8c4b6eded11957dfd9fa1e2b889a53f775becfe6;hpb=a98f477e07a8c2c7b6edefb440ab2ba3e1e96c85;p=catagits%2FCatalyst-Plugin-ConfigLoader.git diff --git a/t/23-path_env.t b/t/23-path_env.t index 8c4b6ed..8035842 100644 --- a/t/23-path_env.t +++ b/t/23-path_env.t @@ -4,9 +4,14 @@ use warnings; use FindBin; use lib "$FindBin::Bin/lib"; -use Test::More tests => 3; +use Test::More; BEGIN { + eval { require Catalyst; Catalyst->VERSION( '5.80001' ); }; + + plan skip_all => 'Catalyst 5.80001 required' if $@; + plan tests => 3; + $ENV{ TESTAPP_CONFIG } = 'test.perl'; use_ok 'Catalyst::Test', 'TestApp'; }