Merge pull request #23 from danabr/correct_return_value_from_search

Correct return value from search
This commit is contained in:
Rory O'Connell 2011-09-24 11:33:38 -07:00
commit 5344d73543
2 changed files with 35 additions and 2 deletions

View file

@ -0,0 +1,29 @@
# -*- ruby encoding: utf-8 -*-
describe Net::LDAP, "search method" do
class FakeConnection
def search(args)
error_code = 1
return error_code
end
end
before(:each) do
@connection = Net::LDAP.new
@connection.instance_variable_set(:@open_connection, FakeConnection.new)
end
context "when returning result set" do
it "should return nil upon error" do
result_set = @connection.search(:return_result => true)
result_set.should be_nil
end
end
context "when returning boolean" do
it "should return false upon error" do
success = @connection.search(:return_result => false)
success.should == false
end
end
end