summaryrefslogtreecommitdiff
path: root/help/test/factories.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-11-06 10:55:25 +0100
committerAzul <azul@leap.se>2013-11-06 10:55:25 +0100
commitebc60f3aba1ca08e454ba5e91f49905df2e5fa13 (patch)
tree48eeab39861be9d9f2993e316cf0118071b917a0 /help/test/factories.rb
parentd620fd42925f1d3d29a66bb61a75bed8c2bdaf8f (diff)
Ticket.destroy_all_from(user) - remove all tickets created by a user
We'll use this to clean up after user destruction
Diffstat (limited to 'help/test/factories.rb')
-rw-r--r--help/test/factories.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/help/test/factories.rb b/help/test/factories.rb
index 5368ce6..bce3af1 100644
--- a/help/test/factories.rb
+++ b/help/test/factories.rb
@@ -9,6 +9,10 @@ FactoryGirl.define do
{ "0" => { "body" => Faker::Lorem.sentences.join(" ") } }
end
end
+
+ factory :ticket_with_creator do
+ created_by { FactoryGirl.create(:user).id }
+ end
end
end