Files
old-holivud2/spec/factories/notes.rb
2020-05-31 22:38:19 +02:00

8 lines
154 B
Ruby

FactoryBot.define do
factory :note do
association :user
association :notable, factory: :appearance_release
content "My note text"
end
end