Trying to get a new stable dev release up.
Ashley Pond V [Sat, 26 Sep 2009 23:16:14 +0000 (23:16 +0000)]
Changes
Makefile.PL
lib/Catalyst/Authentication/Credential/OpenID.pm
t/live-app.t

diff --git a/Changes b/Changes
index 918fd77..5ca429e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
 Revision history for Catalyst::Authentication::Credential::OpenID
 
 0.14.05 Sat Sep  5 12:53:05 PDT 2009
+      - Moving live-app.t back to on demand and only if everything is
+        there to even try.
       
 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
index f10b3d7..ead2392 100644 (file)
@@ -26,10 +26,10 @@ 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";
-test_requires "Net::DNS"       => undef;
-test_requires "IO::Socket::INET"   => undef;
+# test_requires "Net::OpenID::Server" => "1.02";
+# test_requires "Test::WWW::Mechanize" => "1.20";
+# test_requires "Net::DNS"       => undef;
+# test_requires "IO::Socket::INET"   => undef;
 
 if ( $Module::Install::AUTHOR )
 {
index 31e0a04..a23947f 100644 (file)
@@ -7,7 +7,7 @@ BEGIN {
     __PACKAGE__->mk_accessors(qw/ _config realm debug secret /);
 }
 
-our $VERSION = "0.14_04";
+our $VERSION = "0.14_05";
 
 use Net::OpenID::Consumer;
 use Catalyst::Exception ();
@@ -161,7 +161,7 @@ Catalyst::Authentication::Credential::OpenID - OpenID credential for Catalyst::P
 
 =head1 VERSION
 
-0.14_03
+0.14_05
 
 =head1 BACKWARDS COMPATIBILITY CHANGES
 
index f1fae46..a3a9e34 100644 (file)
@@ -1,4 +1,3 @@
-#!/usr/bin/env perl
 use strict;
 use warnings;
 
@@ -8,8 +7,8 @@ use Test::More;
 use Test::WWW::Mechanize;
 
 eval <<_DEPS_;
-   use Catalyst::Runtime 5.7;
-   use Catalyst::Devel 1.0;
+   use Catalyst::Runtime;
+   use Catalyst::Devel;
    use Cache::FastMmap;
    use Catalyst::Authentication::User::Hash;
    use Catalyst::Plugin::Session::State::Cookie;
@@ -22,11 +21,22 @@ eval <<_DEPS_;
    use Net::OpenID::Consumer;
    use Net::OpenID::Server;
    use Test::WWW::Mechanize;
+   use Net::DNS;
+   use IO::Socket::INET;
 _DEPS_
 
-plan skip_all => 'Test application dependencies not satisfied' if $@;
-
-plan tests => 21;
+if ( $@ )
+{
+    plan skip_all => 'Test application dependencies not satisfied';
+}
+elsif ( not $ENV{TEST_HTTP} )
+{
+    plan skip_all => 'set TEST_HTTP to enable this test';
+}
+else
+{
+    plan tests => 21;
+}
 
 # One port for consumer app, one for provider.
 my $consumer_port = 10000 + int rand(1 + 10000);