Sha256: 05e5a1684796112e6f1e72cdadecf6d8c8168728f60fb23e6fb797244c36eee4

Contents?: true

Size: 480 Bytes

Versions: 4

Compression:

Stored size: 480 Bytes

Contents

require 'spec_helper'

describe Adauth::AdObjects::OU do
    it "should find Domain Controllers" do
        default_config
        domain_controllers.should be_a Adauth::AdObjects::OU
    end
    
    it "should have members" do
        default_config
        domain_controllers.members.should be_a Array
    end
    
    it "should have a computer as a member" do
        default_config
        domain_controllers.members.first.should be_a Adauth::AdObjects::Computer
    end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
adauth-2.0.0 spec/adauth_ad_object_ou_spec.rb
adauth-2.0.0pre2 spec/adauth_ad_object_ou_spec.rb
adauth-2.0.0pre1 spec/adauth_ad_object_ou_spec.rb
adauth-2.0.0pre spec/adauth_ad_object_ou_spec.rb