Files
danbooru/test/factories/note.rb
r888888888 341b29ce41 fix tests
2015-08-18 17:40:53 -07:00

15 lines
261 B
Ruby

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