[Catalyst-commits] r13398 - in
Catalyst-Authentication-Store-LDAP/trunk: .
lib/Catalyst/Authentication/Store
lib/Catalyst/Authentication/Store/LDAP t
karpet at dev.catalyst.perl.org
karpet at dev.catalyst.perl.org
Wed Jul 7 18:23:48 GMT 2010
Author: karpet
Date: 2010-07-07 19:23:48 +0100 (Wed, 07 Jul 2010)
New Revision: 13398
Modified:
Catalyst-Authentication-Store-LDAP/trunk/Changes
Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP.pm
Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/Backend.pm
Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/User.pm
Catalyst-Authentication-Store-LDAP/trunk/t/05-user_attributes.t
Log:
skip correct number of tests
Modified: Catalyst-Authentication-Store-LDAP/trunk/Changes
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/Changes 2010-07-06 20:33:02 UTC (rev 13397)
+++ Catalyst-Authentication-Store-LDAP/trunk/Changes 2010-07-07 18:23:48 UTC (rev 13398)
@@ -1,3 +1,6 @@
+1.011 xxx
+ - fix t/05-user_attributes.t to skip correct number of tests if
+ Catalyst::Model::LDAP is not installed.
1.010 6 July 201
- Make AUTOLOAD method work for ->dn by generically calling has_attribute
Modified: Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/Backend.pm
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/Backend.pm 2010-07-06 20:33:02 UTC (rev 13397)
+++ Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/Backend.pm 2010-07-07 18:23:48 UTC (rev 13398)
@@ -72,7 +72,7 @@
use strict;
use warnings;
-our $VERSION = '1.010';
+our $VERSION = '1.011';
use Catalyst::Authentication::Store::LDAP::User;
use Net::LDAP;
Modified: Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/User.pm
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/User.pm 2010-07-06 20:33:02 UTC (rev 13397)
+++ Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/User.pm 2010-07-07 18:23:48 UTC (rev 13398)
@@ -50,7 +50,7 @@
use warnings;
use Scalar::Util qw/refaddr/;
-our $VERSION = '1.010';
+our $VERSION = '1.011';
BEGIN { __PACKAGE__->mk_accessors(qw/user store/) }
Modified: Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP.pm
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP.pm 2010-07-06 20:33:02 UTC (rev 13397)
+++ Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP.pm 2010-07-07 18:23:48 UTC (rev 13398)
@@ -3,7 +3,7 @@
use strict;
use warnings;
-our $VERSION = '1.010';
+our $VERSION = '1.011';
use Catalyst::Authentication::Store::LDAP::Backend;
Modified: Catalyst-Authentication-Store-LDAP/trunk/t/05-user_attributes.t
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/t/05-user_attributes.t 2010-07-06 20:33:02 UTC (rev 13397)
+++ Catalyst-Authentication-Store-LDAP/trunk/t/05-user_attributes.t 2010-07-07 18:23:48 UTC (rev 13398)
@@ -12,7 +12,7 @@
eval "use Catalyst::Model::LDAP";
if ($@) {
- skip "Catalyst::Model::LDAP not installed", 6;
+ skip "Catalyst::Model::LDAP not installed", 9;
}
my $server = LDAPTest::spawn_server();
More information about the Catalyst-commits
mailing list