[Rt-commit] rt branch, 4.4.0-releng, updated. rt-4.2.12-509-g3a80169

Todd Wade todd at bestpractical.com
Tue Nov 3 12:40:30 EST 2015


The branch, 4.4.0-releng has been updated
       via  3a80169a9a5d47d189184f70c81705f02a2fb41a (commit)
      from  309116556b1ae6f635f0e75bcdfaf30c0d5d0045 (commit)

Summary of changes:
 t/externalauth/obfuscate-password.t | 4 ++++
 1 file changed, 4 insertions(+)

- Log -----------------------------------------------------------------
commit 3a80169a9a5d47d189184f70c81705f02a2fb41a
Author: Todd Wade <todd at bestpractical.com>
Date:   Tue Nov 3 12:40:13 2015 -0500

    skip when ::Authen::ExternalAuth can't load like other externalauth tests do

diff --git a/t/externalauth/obfuscate-password.t b/t/externalauth/obfuscate-password.t
index cbe8286..bb200ed 100644
--- a/t/externalauth/obfuscate-password.t
+++ b/t/externalauth/obfuscate-password.t
@@ -3,6 +3,10 @@ use warnings;
 
 use RT::Test tests => undef;
 
+eval { require RT::Authen::ExternalAuth; 1; } or do {
+    plan skip_all => 'Unable to test without Net::LDAP';
+};
+
 RT->Config->Set(
     ExternalSettings => {
         'My_LDAP' => {

-----------------------------------------------------------------------


More information about the rt-commit mailing list