Merge pull request #242 from charlotte-ruby/performance-deletion

Performance deletion
This commit is contained in:
Jonas Grau 2017-05-24 21:50:14 +02:00 committed by GitHub
commit 72b379908f
3 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@ module Impressionist
def define_association def define_association
has_many(:impressions, has_many(:impressions,
:as => :impressionable, :as => :impressionable,
:dependent => :destroy) :dependent => :delete_all)
end end
end end

View File

@ -9,7 +9,7 @@ module Impressionist
def is_impressionable(options={}) def is_impressionable(options={})
many(:impressions, many(:impressions,
:as => :impressionable, :as => :impressionable,
:dependent => :destroy) :dependent => :delete_all)
@impressionist_cache_options = options @impressionist_cache_options = options
end end

View File

@ -57,14 +57,14 @@ describe Impression do
@article.impressionist_count(:filter=>:session_hash).should eq 7 @article.impressionist_count(:filter=>:session_hash).should eq 7
end end
# tests :dependent => :destroy # tests :dependent => :delete_all
it "should delete impressions on deletion of impressionable" do it "should delete impressions on deletion of impressionable" do
#impressions_count = Impression.all.size #impressions_count = Impression.all.size
a = Article.create a = Article.create
i = a.impressions.create i = a.impressions.create
a.destroy a.destroy
a.destroyed?.should be_true a.destroyed?.should be_true
i.destroyed?.should be_true Impression.exists?(i.id).should be_false
end end
end end