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

18 lines
325 B
Ruby

FactoryGirl.define do
factory(:post) do
sequence :md5 do |n|
n.to_s
end
uploader :factory => :user
uploader_ip_addr "127.0.0.1"
tag_string "tag1 tag2"
tag_count 2
tag_count_general 2
file_ext "jpg"
image_width 1500
image_height 1000
file_size 2000
rating "q"
end
end