Files
danbooru/test/factories/pool.rb
albert 6824e98af3 * Refactored routes some
* Fixed some major bugs with pools and pool versioning
2011-01-21 18:07:34 -05:00

6 lines
147 B
Ruby

Factory.define(:pool) do |f|
f.name {Faker::Name.first_name}
f.creator {|x| x.association(:user)}
f.description {Faker::Lorem.sentences}
end