[Catalyst-commits] r11427 - 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:16:15 GMT 2009
Author: apv
Date: 2009-09-26 23:16:14 +0000 (Sat, 26 Sep 2009)
New Revision: 11427
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:
Trying to get a new stable dev release up.
Modified: Catalyst-Authentication-Credential-OpenID/trunk/Changes
===================================================================
--- Catalyst-Authentication-Credential-OpenID/trunk/Changes 2009-09-26 23:07:44 UTC (rev 11426)
+++ Catalyst-Authentication-Credential-OpenID/trunk/Changes 2009-09-26 23:16:14 UTC (rev 11427)
@@ -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
Modified: Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL
===================================================================
--- Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL 2009-09-26 23:07:44 UTC (rev 11426)
+++ Catalyst-Authentication-Credential-OpenID/trunk/Makefile.PL 2009-09-26 23:16:14 UTC (rev 11427)
@@ -26,10 +26,10 @@
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 )
{
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 23:07:44 UTC (rev 11426)
+++ Catalyst-Authentication-Credential-OpenID/trunk/lib/Catalyst/Authentication/Credential/OpenID.pm 2009-09-26 23:16:14 UTC (rev 11427)
@@ -7,7 +7,7 @@
__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 @@
=head1 VERSION
-0.14_03
+0.14_05
=head1 BACKWARDS COMPATIBILITY CHANGES
Modified: Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t
===================================================================
--- Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t 2009-09-26 23:07:44 UTC (rev 11426)
+++ Catalyst-Authentication-Credential-OpenID/trunk/t/live-app.t 2009-09-26 23:16:14 UTC (rev 11427)
@@ -1,4 +1,3 @@
-#!/usr/bin/env perl
use strict;
use warnings;
@@ -8,8 +7,8 @@
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,12 +21,23 @@
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 $@;
+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;
+}
-plan tests => 21;
-
# One port for consumer app, one for provider.
my $consumer_port = 10000 + int rand(1 + 10000);
my $provider_port = $consumer_port;
More information about the Catalyst-commits
mailing list