Files
danbooru/test/factories/note.rb
2019-05-10 17:31:07 -07:00

12 lines
187 B
Ruby

FactoryBot.define do
factory(:note) do
post
x { 1 }
y { 1 }
width { 1 }
height { 1 }
is_active { true }
body { FFaker::Lorem.sentences.join(" ") }
end
end