Closed HarlemSquirrel closed 4 years ago
I think we should be able to compare entries with == just like we do with hashes.
==
Hash.new(dn: 'dc=example,dc=com') == Hash.new(dn: 'dc=example,dc=com') # => true Net::LDAP::Entry.new(dn: 'dc=example,dc=com') == Net::LDAP::Entry.new(dn: 'dc=example,dc=com') # => false
I think we should be able to compare entries with
==
just like we do with hashes.