[Catalyst-commits] r11426 - in Catalyst-Authentication-Credential-OpenID/trunk: . lib/Catalyst/Authentication/Credential t

apv at dev.catalyst.perl.org apv at dev.catalyst.perl.org
Sat Sep 26 23:07:45 GMT 2009


Author: apv
Date: 2009-09-26 23:07:44 +0000 (Sat, 26 Sep 2009)
New Revision: 11426

Modified:
   Catalyst-Authentication-Credential-OpenID/trunk/Changes
   Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL
   Catalyst-Authentication-Credential-OpenID/trunk/lib/Catalyst/Authentication/Credential/OpenID.pm
   Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t
Log:
Lost track. This is probably 0.14_04 on the CPAN.

Modified: Catalyst-Authentication-Credential-OpenID/trunk/Changes
===================================================================
--- Catalyst-Authentication-Credential-OpenID/trunk/Changes	2009-09-26 03:46:09 UTC (rev 11425)
+++ Catalyst-Authentication-Credential-OpenID/trunk/Changes	2009-09-26 23:07:44 UTC (rev 11426)
@@ -1,5 +1,11 @@
 Revision history for Catalyst::Authentication::Credential::OpenID
 
+0.14.05 Sat Sep  5 12:53:05 PDT 2009
+      
+0.14_04 Fri Sep  4 15:00:09 PDT 2009
+      - Just making the live-app.t run for all installs to see if the
+        testers pick up any problems with it.
+
 0.14_03 Sun Aug 23 21:13:33 PDT 2009
       - Made errors non-fatal to match behavior of other credentials.
         Provided legacy setting for those who still prefer it.

Modified: Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL
===================================================================
--- Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL	2009-09-26 03:46:09 UTC (rev 11425)
+++ Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL	2009-09-26 23:07:44 UTC (rev 11426)
@@ -23,6 +23,8 @@
 recommends "Math::BigInt"    => undef;
 recommends "LWPx::ParanoidAgent" => "1.03";
 
+test_requires "Catalyst::Engine::HTTP";
+
 test_requires "Test::More"      => "0.42";
 test_requires "Net::OpenID::Server" => "1.02";
 test_requires "Test::WWW::Mechanize" => "1.20";

Modified: Catalyst-Authentication-Credential-OpenID/trunk/lib/Catalyst/Authentication/Credential/OpenID.pm
===================================================================
--- Catalyst-Authentication-Credential-OpenID/trunk/lib/Catalyst/Authentication/Credential/OpenID.pm	2009-09-26 03:46:09 UTC (rev 11425)
+++ Catalyst-Authentication-Credential-OpenID/trunk/lib/Catalyst/Authentication/Credential/OpenID.pm	2009-09-26 23:07:44 UTC (rev 11426)
@@ -7,7 +7,7 @@
     __PACKAGE__->mk_accessors(qw/ _config realm debug secret /);
 }
 
-our $VERSION = "0.14_03";
+our $VERSION = "0.14_04";
 
 use Net::OpenID::Consumer;
 use Catalyst::Exception ();

Modified: Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t
===================================================================
--- Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t	2009-09-26 03:46:09 UTC (rev 11425)
+++ Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t	2009-09-26 23:07:44 UTC (rev 11426)
@@ -7,11 +7,25 @@
 use Test::More;
 use Test::WWW::Mechanize;
 
-plan skip_all => 'set TEST_HTTP to enable this test' unless $ENV{TEST_HTTP};
-eval "use Catalyst::Devel 1.0";
-plan skip_all => 'Catalyst::Devel required' if $@;
+eval <<_DEPS_;
+   use Catalyst::Runtime 5.7;
+   use Catalyst::Devel 1.0;
+   use Cache::FastMmap;
+   use Catalyst::Authentication::User::Hash;
+   use Catalyst::Plugin::Session::State::Cookie;
+   use Catalyst::Plugin::Session::Store::FastMmap;
+   use Class::Accessor::Fast;
+   use Crypt::DH;
+   use ExtUtils::MakeMaker;
+   use HTML::Parser 3;
+   use LWP::UserAgent;
+   use Net::OpenID::Consumer;
+   use Net::OpenID::Server;
+   use Test::WWW::Mechanize;
+_DEPS_
 
-# plan "no_plan";
+plan skip_all => 'Test application dependencies not satisfied' if $@;
+
 plan tests => 21;
 
 # One port for consumer app, one for provider.




More information about the Catalyst-commits mailing list