blob: bcf41e84fc35bcdcc7baae2c77fe8065a9335659 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
FactoryGirl.define do
factory :ticket do
subject { Faker::Lorem.sentence }
email { Faker::Internet.email }
factory :ticket_with_comment do
comments_attributes do
{ "0" => {
"body" => Faker::Lorem.sentences.join(" "),
"posted_by" => created_by
} }
end
end
factory :ticket_with_creator do
created_by { FactoryGirl.create(:user).id }
end
end
# TicketComments can not be saved. so only use this with build
# and add to a ticket afterwards
factory :ticket_comment do
body { Faker::Lorem.sentences.join(" ") }
end
end
|