summaryrefslogtreecommitdiff
path: root/t/test-ldap-probe.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-02-17 20:50:38 +0000
committerSteve Kemp <steve@steve.org.uk>2015-02-17 20:50:38 +0000
commitf150b7ea0951fc92c4f92b7ef890c7ee305cc82c (patch)
tree85645356e69d059949db64d306a55d9c27d53697 /t/test-ldap-probe.rb
parent701ba36b540bea26a6f5b3e5468e8e46de0793d7 (diff)
Updated for new test-type API.
Now that the class-factory returns an Array, we've updated the test-cases to continue to pass.
Diffstat (limited to 't/test-ldap-probe.rb')
-rwxr-xr-xt/test-ldap-probe.rb9
1 files changed, 7 insertions, 2 deletions
diff --git a/t/test-ldap-probe.rb b/t/test-ldap-probe.rb
index 4e552b4..9d6b6f0 100755
--- a/t/test-ldap-probe.rb
+++ b/t/test-ldap-probe.rb
@@ -32,8 +32,9 @@ class TestLDAPProbe < Test::Unit::TestCase
test = Custodian::TestFactory.create( "auth.bytemark.co.uk must run ldap on 389 with username 'testing' with password 'bob' otherwise 'LDAP dead?'." )
end
- assert( test )
- assert_equal( test.get_type, "ldap" )
+ assert( test.kind_of? Array )
+ assert( ! test.empty? )
+ assert_equal( test[0].get_type, "ldap" )
end
@@ -57,6 +58,10 @@ class TestLDAPProbe < Test::Unit::TestCase
data.each do |str|
assert_raise ArgumentError do
test = Custodian::TestFactory.create( str )
+
+ assert( test.kind_of? Array )
+ assert( ! test.empty? )
+
end
end
end