Files
danbooru/test/factories/pool.rb
2011-10-16 22:35:19 -04:00

6 lines
153 B
Ruby

Factory.define(:pool) do |f|
f.name {(rand(1_000_000) + 100).to_s}
f.creator {|x| x.association(:user)}
f.description {Faker::Lorem.sentences}
end