8 lines
154 B
Ruby
8 lines
154 B
Ruby
FactoryBot.define do
|
|
factory :note do
|
|
association :user
|
|
association :notable, factory: :appearance_release
|
|
content "My note text"
|
|
end
|
|
end
|