osem-fcy/spec/factories/votes.rb
2019-08-25 22:58:54 +05:30

11 lines
151 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :vote do
user
rating { 1 }
association :votable, factory: :event
end
end