Files
danbooru/test/factories/pool.rb

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