FactoryBot.define do factory :vote do association :votable, factory: :debate association :voter, factory: :user vote_flag { true } after(:create) do |vote, _| vote.votable.update_cached_votes end end end