summaryrefslogtreecommitdiff
path: root/help/test/factories.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-11-06 10:40:32 +0100
committerAzul <azul@leap.se>2013-11-06 10:40:53 +0100
commitd620fd42925f1d3d29a66bb61a75bed8c2bdaf8f (patch)
tree522e9f1e0264696d0353f39ac1969ed86c33b75f /help/test/factories.rb
parent44d273fd03645af5e546133adf4e9906800d3d5f (diff)
refactor: split up and cleaned up ticket validation tests
Diffstat (limited to 'help/test/factories.rb')
-rw-r--r--help/test/factories.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/help/test/factories.rb b/help/test/factories.rb
index 5b38952..5368ce6 100644
--- a/help/test/factories.rb
+++ b/help/test/factories.rb
@@ -2,8 +2,12 @@ FactoryGirl.define do
factory :ticket do
title { Faker::Lorem.sentence }
- comments_attributes do
- { "0" => { "body" => Faker::Lorem.sentences.join(" ") } }
+ email { Faker::Internet.email }
+
+ factory :ticket_with_comment do
+ comments_attributes do
+ { "0" => { "body" => Faker::Lorem.sentences.join(" ") } }
+ end
end
end