[Catalyst-commits] r6647 - in trunk/Catalyst-Model-LDAP: . t

dwc at dev.catalyst.perl.org dwc at dev.catalyst.perl.org
Sat Aug 11 23:36:51 GMT 2007


Author: dwc
Date: 2007-08-11 23:36:51 +0100 (Sat, 11 Aug 2007)
New Revision: 6647

Modified:
   trunk/Catalyst-Model-LDAP/Changes
   trunk/Catalyst-Model-LDAP/t/live_search.t
   trunk/Catalyst-Model-LDAP/t/unit_Connection.t
   trunk/Catalyst-Model-LDAP/t/unit_Connection_bind.t
   trunk/Catalyst-Model-LDAP/t/unit_Connection_search.t
   trunk/Catalyst-Model-LDAP/t/unit_Connection_search_limit.t
Log:
s/LDAP_TEST_LIVE/TEST_AUTHOR/g in tests

Modified: trunk/Catalyst-Model-LDAP/Changes
===================================================================
--- trunk/Catalyst-Model-LDAP/Changes	2007-08-11 22:22:18 UTC (rev 6646)
+++ trunk/Catalyst-Model-LDAP/Changes	2007-08-11 22:36:51 UTC (rev 6647)
@@ -11,6 +11,7 @@
           Catalyst::Model::LDAP::Connection to full accessors
         - Make Catalyst::Model::LDAP::Connection->bind a little more
           flexible
+        - s/LDAP_TEST_LIVE/TEST_AUTHOR/g in tests
 
 0.15  Fri Feb 23 11:37:25 EST 2007
         - Throw runtime require errors

Modified: trunk/Catalyst-Model-LDAP/t/live_search.t
===================================================================
--- trunk/Catalyst-Model-LDAP/t/live_search.t	2007-08-11 22:22:18 UTC (rev 6646)
+++ trunk/Catalyst-Model-LDAP/t/live_search.t	2007-08-11 22:36:51 UTC (rev 6647)
@@ -6,7 +6,7 @@
 use lib "$FindBin::Bin/lib";
 use Catalyst::Test 'TestApp';
 
-plan skip_all => 'set LDAP_TEST_LIVE to enable this test' unless $ENV{LDAP_TEST_LIVE};
+plan skip_all => 'set TEST_AUTHOR to enable this test' unless $ENV{TEST_AUTHOR};
 plan tests    => 6;
 
 {

Modified: trunk/Catalyst-Model-LDAP/t/unit_Connection.t
===================================================================
--- trunk/Catalyst-Model-LDAP/t/unit_Connection.t	2007-08-11 22:22:18 UTC (rev 6646)
+++ trunk/Catalyst-Model-LDAP/t/unit_Connection.t	2007-08-11 22:36:51 UTC (rev 6647)
@@ -3,7 +3,7 @@
 use Catalyst::Model::LDAP::Connection;
 use Test::More;
 
-plan skip_all => 'set LDAP_TEST_LIVE to enable this test' unless $ENV{LDAP_TEST_LIVE};
+plan skip_all => 'set TEST_AUTHOR to enable this test' unless $ENV{TEST_AUTHOR};
 plan tests    => 3;
 
 {

Modified: trunk/Catalyst-Model-LDAP/t/unit_Connection_bind.t
===================================================================
--- trunk/Catalyst-Model-LDAP/t/unit_Connection_bind.t	2007-08-11 22:22:18 UTC (rev 6646)
+++ trunk/Catalyst-Model-LDAP/t/unit_Connection_bind.t	2007-08-11 22:36:51 UTC (rev 6647)
@@ -3,8 +3,8 @@
 use Catalyst::Model::LDAP::Connection;
 use Test::More;
 
-plan skip_all => 'set LDAP_TEST_LIVE, LDAP_BINDDN, and LDAP_PASSWORD to enable this test'
-    unless $ENV{LDAP_TEST_LIVE} and $ENV{LDAP_BINDDN} and $ENV{LDAP_PASSWORD};
+plan skip_all => 'set TEST_AUTHOR, LDAP_BINDDN, and LDAP_PASSWORD to enable this test'
+    unless $ENV{TEST_AUTHOR} and $ENV{LDAP_BINDDN} and $ENV{LDAP_PASSWORD};
 plan tests    => 7;
 
 my $UID = 'dwc';

Modified: trunk/Catalyst-Model-LDAP/t/unit_Connection_search.t
===================================================================
--- trunk/Catalyst-Model-LDAP/t/unit_Connection_search.t	2007-08-11 22:22:18 UTC (rev 6646)
+++ trunk/Catalyst-Model-LDAP/t/unit_Connection_search.t	2007-08-11 22:36:51 UTC (rev 6647)
@@ -3,7 +3,7 @@
 use Catalyst::Model::LDAP::Connection;
 use Test::More;
 
-plan skip_all => 'set LDAP_TEST_LIVE to enable this test' unless $ENV{LDAP_TEST_LIVE};
+plan skip_all => 'set TEST_AUTHOR to enable this test' unless $ENV{TEST_AUTHOR};
 plan tests    => 7;
 
 my $SN = 'TEST';

Modified: trunk/Catalyst-Model-LDAP/t/unit_Connection_search_limit.t
===================================================================
--- trunk/Catalyst-Model-LDAP/t/unit_Connection_search_limit.t	2007-08-11 22:22:18 UTC (rev 6646)
+++ trunk/Catalyst-Model-LDAP/t/unit_Connection_search_limit.t	2007-08-11 22:36:51 UTC (rev 6647)
@@ -4,7 +4,7 @@
 use Net::LDAP::Constant qw/LDAP_SIZELIMIT_EXCEEDED/;
 use Test::More;
 
-plan skip_all => 'set LDAP_TEST_LIVE to enable this test' unless $ENV{LDAP_TEST_LIVE};
+plan skip_all => 'set TEST_AUTHOR to enable this test' unless $ENV{TEST_AUTHOR};
 plan tests    => 7;
 
 my $SIZELIMIT = 2;




More information about the Catalyst-commits mailing list