[Catalyst-commits] r8097 - in Catalyst-Authentication-Store-LDAP/trunk: . lib/Catalyst/Authentication/Store lib/Catalyst/Authentication/Store/LDAP t/lib

karpet at dev.catalyst.perl.org karpet at dev.catalyst.perl.org
Wed Jul 9 21:45:53 BST 2008


Author: karpet
Date: 2008-07-09 21:45:52 +0100 (Wed, 09 Jul 2008)
New Revision: 8097

Modified:
   Catalyst-Authentication-Store-LDAP/trunk/Changes
   Catalyst-Authentication-Store-LDAP/trunk/META.yml
   Catalyst-Authentication-Store-LDAP/trunk/Makefile.PL
   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/lib/LDAPTest.pm
Log:
tweek tests to work with Net::LDAP::Server::Test 0.03

Modified: Catalyst-Authentication-Store-LDAP/trunk/Changes
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/Changes	2008-07-09 18:49:38 UTC (rev 8096)
+++ Catalyst-Authentication-Store-LDAP/trunk/Changes	2008-07-09 20:45:52 UTC (rev 8097)
@@ -1,3 +1,7 @@
+0.1002  9 July 2008
+    - tests updated to use Net::LDAP::Server::Test 0.03
+
+
 0.1001  9 April 2008
     - matthewr pointed out that the SYNOPSIS 'use Catalyst' line is wrong.
     - imacat reported that t/03-entry was failing when Catalyst::Model::LDAP was

Modified: Catalyst-Authentication-Store-LDAP/trunk/META.yml
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/META.yml	2008-07-09 18:49:38 UTC (rev 8096)
+++ Catalyst-Authentication-Store-LDAP/trunk/META.yml	2008-07-09 20:45:52 UTC (rev 8097)
@@ -3,7 +3,7 @@
 author: 
   - Adam Jacob <holoway at cpan.org>
 build_requires: 
-  Net::LDAP::Server::Test: 0.02
+  Net::LDAP::Server::Test: 0.03
   Test::More: 0
 distribution_type: module
 generated_by: Module::Install version 0.68
@@ -19,4 +19,4 @@
 requires: 
   Catalyst::Plugin::Authentication: 0.10003
   Net::LDAP: 0
-version: 0.1001
+version: 0.1002

Modified: Catalyst-Authentication-Store-LDAP/trunk/Makefile.PL
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/Makefile.PL	2008-07-09 18:49:38 UTC (rev 8096)
+++ Catalyst-Authentication-Store-LDAP/trunk/Makefile.PL	2008-07-09 20:45:52 UTC (rev 8097)
@@ -10,7 +10,7 @@
 requires( 'Catalyst::Plugin::Authentication' => '0.10003' );
 
 #requires('Catalyst::Model::LDAP');
-build_requires('Net::LDAP::Server::Test' => '0.02');
+build_requires('Net::LDAP::Server::Test' => '0.03');
 build_requires('Test::More');
 
 auto_install();

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	2008-07-09 18:49:38 UTC (rev 8096)
+++ Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/Backend.pm	2008-07-09 20:45:52 UTC (rev 8097)
@@ -78,7 +78,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.1001';
+our $VERSION = '0.1002';
 
 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	2008-07-09 18:49:38 UTC (rev 8096)
+++ Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/User.pm	2008-07-09 20:45:52 UTC (rev 8097)
@@ -46,7 +46,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.1001';
+our $VERSION = '0.1002';
 
 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	2008-07-09 18:49:38 UTC (rev 8096)
+++ Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP.pm	2008-07-09 20:45:52 UTC (rev 8097)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.1001';
+our $VERSION = '0.1002';
 
 use Catalyst::Authentication::Store::LDAP::Backend;
 

Modified: Catalyst-Authentication-Store-LDAP/trunk/t/lib/LDAPTest.pm
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/t/lib/LDAPTest.pm	2008-07-09 18:49:38 UTC (rev 8096)
+++ Catalyst-Authentication-Store-LDAP/trunk/t/lib/LDAPTest.pm	2008-07-09 20:45:52 UTC (rev 8097)
@@ -20,7 +20,7 @@
     );
     push @mydata, $entry;
 
-    return Net::LDAP::Server::Test->new( server_port(), \@mydata );
+    return Net::LDAP::Server::Test->new( server_port(), data => \@mydata );
 }
 
 1;




More information about the Catalyst-commits mailing list