summaryrefslogtreecommitdiff
path: root/help/test/unit
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/unit
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/unit')
-rw-r--r--help/test/unit/ticket_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/help/test/unit/ticket_test.rb b/help/test/unit/ticket_test.rb
index 04832d9..6c29d11 100644
--- a/help/test/unit/ticket_test.rb
+++ b/help/test/unit/ticket_test.rb
@@ -39,6 +39,12 @@ class TicketTest < ActiveSupport::TestCase
assert @sample.is_creator_validated?
end
+ test "destroy all tickets from a user" do
+ t = FactoryGirl.create :ticket_with_creator
+ u = t.created_by_user
+ Ticket.destroy_all_from(u)
+ assert_equal nil, Ticket.find(t.id)
+ end
=begin
# TODO: do once have current_user stuff in order
test "code if & only if not creator-validated" do