trabajo-afectivo/spec/factories/vendor/net/ldap/entry.rb

10 lines
247 B
Ruby
Raw Normal View History

FactoryBot.define do
# add custom attributes via:
# mocked_entry = build(:ldap_entry)
# mocked_entry['attr'] = [value, another_value]
factory :ldap_entry, class: Net::LDAP::Entry do
initialize_with { new('dc=com') }
end
end