X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flive_app.t;h=af9042cf078f79154137218f115961fff2ed7dfe;hb=8f57bf96b78b15ca9407e6ab5d2426745ac8a1f0;hp=d27d291424918e30b8378c702b5f616f0eec7298;hpb=a3bf437a38fe00ccd875947ee09eb0e53ecc3396;p=catagits%2FCatalyst-Plugin-Authentication.git diff --git a/t/live_app.t b/t/live_app.t index d27d291..af9042c 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/;