[Catalyst-commits] r14324 - in
Catalyst-Authentication-Credential-OpenID/trunk: . t
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Sun Jul 15 20:01:32 GMT 2012
Author: t0m
Date: 2012-07-15 20:01:32 +0000 (Sun, 15 Jul 2012)
New Revision: 14324
Modified:
Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL
Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t
Log:
Add author deps so live tests get run
Modified: Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL
===================================================================
--- Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL 2012-07-15 17:51:11 UTC (rev 14323)
+++ Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL 2012-07-15 20:01:32 UTC (rev 14324)
@@ -1,6 +1,7 @@
use inc::Module::Install 0.87;
use strict;
use warnings;
+use Module::Install::AuthorTests;
name "Catalyst-Authentication-Credential-OpenID";
all_from "lib/Catalyst/Authentication/Credential/OpenID.pm";
@@ -13,7 +14,7 @@
requires "Catalyst" => "5.7";
requires "Catalyst::Devel" => "1";
requires "Net::OpenID::Consumer" => "1.03";
-requires "Catalyst::Authentication::User::Hash" => undef;
+requires "Catalyst::Plugin::Authentication";
requires "Catalyst::Plugin::Session::Store::FastMmap" => "0.05";
requires "Catalyst::Plugin::Session::State::Cookie" => "0.08";
requires "Catalyst::Engine::HTTP" => undef;
@@ -31,6 +32,26 @@
# test_requires "Net::DNS" => undef;
# test_requires "IO::Socket::INET" => undef;
+author_requires(
+ 'Test::WWW::Mechanize' => undef,
+ 'Catalyst::Runtime' => undef,
+ 'Catalyst::Devel' => undef,
+ 'Cache::FastMmap' => undef,
+ 'Catalyst::Plugin::Session::State::Cookie' => undef,
+ 'Catalyst::Plugin::Session::Store::FastMmap' => undef,
+ 'Class::Accessor::Fast' => undef,
+ 'Crypt::DH' => undef,
+ 'ExtUtils::MakeMaker' => undef,
+ 'HTML::Parser' => 3,
+ 'LWP::UserAgent' => undef,
+ 'Net::OpenID::Consumer' => undef,
+ 'Net::OpenID::Server' => undef,
+ 'Test::WWW::Mechanize' => undef,
+ 'Net::DNS' => undef,
+ 'IO::Socket::INET' => undef,
+);
+
+
if ( $Module::Install::AUTHOR )
{
system("pod2text lib/Catalyst/Authentication/Credential/OpenID.pm > README") == 0
Modified: Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t
===================================================================
--- Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t 2012-07-15 17:51:11 UTC (rev 14323)
+++ Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t 2012-07-15 20:01:32 UTC (rev 14324)
@@ -27,7 +27,7 @@
if ( $@ )
{
- plan skip_all => 'Test application dependencies not satisfied';
+ plan skip_all => 'Test application dependencies not satisfied ' . $@;
}
elsif ( not $ENV{TEST_HTTP} )
{
More information about the Catalyst-commits
mailing list