Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Committing large transactions is very slow #48

Merged
merged 1 commit into from
Mar 23, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/closure_tree/acts_as_tree.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ def ==(comparison_object)
self.attributes == comparison_object.attributes
end
alias :eql? :==
def hash
attributes.hash
end
RUBY

self.hierarchy_class.table_name = hierarchy_table_name
Expand Down
9 changes: 9 additions & 0 deletions spec/tag_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,15 @@ def nuke_db
TagHierarchy.find_all_by_ancestor_id(@root.id).should == root_hiers
TagHierarchy.find_all_by_descendant_id(@root.id).should == root_hiers
end

it "should have different hash codes for each hierarchy model" do
hashes = TagHierarchy.all.map(&:hash)
hashes.should =~ hashes.uniq
end

it "should return the same hash code for equal hierarchy models" do
TagHierarchy.first.hash.should == TagHierarchy.first.hash
end
end

it "performs as the readme says it does" do
Expand Down