Files
danbooru/test/factories/note.rb
2017-02-06 18:48:39 -06:00

14 lines
210 B
Ruby

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