mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-24 01:57:46 -05:00
9 lines
135 B
Ruby
9 lines
135 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :like do
|
|
member
|
|
association :likeable, factory: "post"
|
|
end
|
|
end
|