summaryrefslogtreecommitdiff
path: root/t/test-custodian-testfactory.rb
diff options
context:
space:
mode:
Diffstat (limited to 't/test-custodian-testfactory.rb')
-rwxr-xr-xt/test-custodian-testfactory.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/t/test-custodian-testfactory.rb b/t/test-custodian-testfactory.rb
index e8e7d27..953016e 100755
--- a/t/test-custodian-testfactory.rb
+++ b/t/test-custodian-testfactory.rb
@@ -191,7 +191,6 @@ class TestTestFactory < Test::Unit::TestCase
"foo must run ping otherwise" => false,
"foo must not run ping otherwise" => true,
"foo must not run ssh otherwise" => true,
- "foo must not run ldap otherwise" => true,
}
#
@@ -229,9 +228,9 @@ class TestTestFactory < Test::Unit::TestCase
tst = $1.dup.downcase
#
- # NOTE: Skip the DNS test - it is more complex.
+ # NOTE: Skip the DNS and LDAP tests - they are more complex.
#
- next if ( tst =~ /^(dns)$/ )
+ next if ( tst =~ /^(ldap|dns)$/ )
# normal
test_one = "http://foo/ must run #{tst} on 1234"