From: Tomas Doran Date: Mon, 25 Feb 2013 14:01:38 +0000 (+0000) Subject: Fix RT#81506 X-Git-Tag: 0.40~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Session.git;a=commitdiff_plain;h=d7cb2327deb8adbfe9ca7113d0e23b87635195da Fix RT#81506 --- diff --git a/Changes b/Changes index 9fe1b3a..19fa518 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Catalyst::Plugin::Session + - Fix t/live_verify_address.t to skip of Catalyst::Plugin::Authentication + is not installed, fixing RT#81506. + 0.36 2012-10-19 - Re-pack with new Module::Install which doesn't get MYMETA.yaml wrong. diff --git a/t/live_verify_address.t b/t/live_verify_address.t index bc58b43..e18ca91 100644 --- a/t/live_verify_address.t +++ b/t/live_verify_address.t @@ -16,6 +16,9 @@ BEGIN { or plan skip_all => 'Test::WWW::Mechanize::PSGI is required for this test'; + eval { require Catalyst::Plugin::Authentication; 1 } + or plan skip_all => "Catalyst::Plugin::Authentication is required for this test"; + plan tests => 12; }