Files
grecia/spec/factories/votes.rb
Javi Martín 614b4fbe4c Add and apply FactoryBot/AssociationStyle rule
This rule was added in rubocop-factory_bot 2.23.0. We were following it
sometimes, and sometimes we were not.
2023-09-08 13:52:54 +02:00

11 lines
206 B
Ruby

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