9 lines
217 B
Ruby
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
|