Lost track. This is probably 0.14_04 on the CPAN.
Ashley Pond V [Sat, 26 Sep 2009 23:07:44 +0000 (23:07 +0000)]
Changes
Makefile.PL
lib/Catalyst/Authentication/Credential/OpenID.pm
t/live-app.t

diff --git a/Changes b/Changes
index c4b0307..918fd77 100644 (file)
--- a/Changes
+++ b/Changes
@@ -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.
index 50eec95..f10b3d7 100644 (file)
@@ -23,6 +23,8 @@ recommends "YAML"        => "0.6";
 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";
index 2bdd1b0..31e0a04 100644 (file)
@@ -7,7 +7,7 @@ BEGIN {
     __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 ();
index 860bd04..f1fae46 100644 (file)
@@ -7,11 +7,25 @@ use IO::Socket;
 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 skip_all => 'Test application dependencies not satisfied' if $@;
 
-# plan "no_plan";
 plan tests => 21;
 
 # One port for consumer app, one for provider.