From: Peter Karman Date: Fri, 11 Dec 2009 18:27:22 +0000 (+0000) Subject: bump version, add basic test X-Git-Tag: v0.1006~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=821627ad45646d20b53dcb3e8568f77e743265b8;hp=81cc465e47bd45b2b1e516803a228f29ac79a9ab;p=catagits%2FCatalyst-Authentication-Store-LDAP.git bump version, add basic test --- diff --git a/MANIFEST b/MANIFEST index 14471bb..67f14b9 100644 --- a/MANIFEST +++ b/MANIFEST @@ -16,6 +16,7 @@ lib/Catalyst/Authentication/Store/LDAP/User.pm 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 diff --git a/lib/Catalyst/Authentication/Store/LDAP.pm b/lib/Catalyst/Authentication/Store/LDAP.pm index 7070f8c..b616d32 100644 --- a/lib/Catalyst/Authentication/Store/LDAP.pm +++ b/lib/Catalyst/Authentication/Store/LDAP.pm @@ -3,7 +3,7 @@ package Catalyst::Authentication::Store::LDAP; use strict; use warnings; -our $VERSION = '0.1005'; +our $VERSION = '1.006'; use Catalyst::Authentication::Store::LDAP::Backend; diff --git a/lib/Catalyst/Authentication/Store/LDAP/Backend.pm b/lib/Catalyst/Authentication/Store/LDAP/Backend.pm index e8f29c9..b3df731 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/Backend.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/Backend.pm @@ -72,7 +72,7 @@ use base qw( Class::Accessor::Fast ); use strict; use warnings; -our $VERSION = '0.1005'; +our $VERSION = '1.006'; use Catalyst::Authentication::Store::LDAP::User; use Net::LDAP; diff --git a/lib/Catalyst/Authentication/Store/LDAP/User.pm b/lib/Catalyst/Authentication/Store/LDAP/User.pm index ef284f0..d63c765 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/User.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/User.pm @@ -49,7 +49,7 @@ use base qw( Catalyst::Authentication::User Class::Accessor::Fast ); use strict; use warnings; -our $VERSION = '0.1005'; +our $VERSION = '1.006'; BEGIN { __PACKAGE__->mk_accessors(qw/user store _ldap_connection_password/) } diff --git a/t/01-basic.t b/t/01-basic.t new file mode 100644 index 0000000..6139467 --- /dev/null +++ b/t/01-basic.t @@ -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); +