[Catalyst-commits] r12310 - 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
Fri Dec 11 18:27:22 GMT 2009


Author: karpet
Date: 2009-12-11 18:27:22 +0000 (Fri, 11 Dec 2009)
New Revision: 12310

Added:
   Catalyst-Authentication-Store-LDAP/trunk/t/01-basic.t
Modified:
   Catalyst-Authentication-Store-LDAP/trunk/MANIFEST
   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
Log:
bump version, add basic test

Modified: Catalyst-Authentication-Store-LDAP/trunk/MANIFEST
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/MANIFEST	2009-12-11 17:35:09 UTC (rev 12309)
+++ Catalyst-Authentication-Store-LDAP/trunk/MANIFEST	2009-12-11 18:27:22 UTC (rev 12310)
@@ -16,6 +16,7 @@
 Makefile.PL
 MANIFEST			This list of files
 META.yml
+t/01-basic.t
 t/02-realms_api.t
 t/03-entry_class.t
 t/04-user_class.t

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	2009-12-11 17:35:09 UTC (rev 12309)
+++ Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/Backend.pm	2009-12-11 18:27:22 UTC (rev 12310)
@@ -72,7 +72,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.1005';
+our $VERSION = '1.006';
 
 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	2009-12-11 17:35:09 UTC (rev 12309)
+++ Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP/User.pm	2009-12-11 18:27:22 UTC (rev 12310)
@@ -49,7 +49,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.1005';
+our $VERSION = '1.006';
 
 BEGIN { __PACKAGE__->mk_accessors(qw/user store _ldap_connection_password/) }
 

Modified: Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP.pm
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP.pm	2009-12-11 17:35:09 UTC (rev 12309)
+++ Catalyst-Authentication-Store-LDAP/trunk/lib/Catalyst/Authentication/Store/LDAP.pm	2009-12-11 18:27:22 UTC (rev 12310)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.1005';
+our $VERSION = '1.006';
 
 use Catalyst::Authentication::Store::LDAP::Backend;
 

Added: Catalyst-Authentication-Store-LDAP/trunk/t/01-basic.t
===================================================================
--- Catalyst-Authentication-Store-LDAP/trunk/t/01-basic.t	                        (rev 0)
+++ Catalyst-Authentication-Store-LDAP/trunk/t/01-basic.t	2009-12-11 18:27:22 UTC (rev 12310)
@@ -0,0 +1,9 @@
+use strict;
+use Test::More tests => 2;
+use_ok('Catalyst');
+use_ok('Catalyst::Authentication::Store::LDAP');
+
+diag("Testing Catalyst::Authentication::Store::LDAP version " .
+      $Catalyst::Authentication::Store::LDAP::VERSION);
+diag("Testing Catalyst version " . $Catalyst::VERSION);
+




More information about the Catalyst-commits mailing list