X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flive_app.t;h=4d55cd52652e61e30d6c4209867575b255fdd008;hb=75000a8177ed6a7b6d50a603d4466751de05b662;hp=d27d291424918e30b8378c702b5f616f0eec7298;hpb=a3bf437a38fe00ccd875947ee09eb0e53ecc3396;p=catagits%2FCatalyst-Plugin-Authentication.git diff --git a/t/live_app.t b/t/live_app.t index d27d291..4d55cd5 100644 --- a/t/live_app.t +++ b/t/live_app.t @@ -1,9 +1,12 @@ -#!/usr/bin/perl - use strict; use warnings; -use Test::More 'no_plan'; +use Test::More; + +BEGIN { + plan skip_all => "Digest::SHA1 is required for this test" unless eval { require Digest::SHA1 }; + plan "no_plan"; +} use lib 't/lib'; use Catalyst::Test qw/AuthTestApp/;