Files
danbooru/test/factories/dmail.rb
2010-02-20 18:08:22 -05:00

9 lines
217 B
Ruby

Factory.define(:dmail) do |f|
f.owner {|x| x.association(:user)}
f.from_id {|x| x.owner_id}
f.to {|x| x.association(:user)}
f.title {Faker::Lorem.words}
f.body {Faker::Lorem.sentences}
f.is_read false
end