blob: 0ecb1aa752393307f4d2464aaa8e616a51d6d321 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'test_helper'
class AccountExtensionTest < ActiveSupport::TestCase
setup do
InviteCodeValidator.any_instance.stubs(:validate)
end
test "destroying an account triggers ticket destruction" do
t = FactoryGirl.create :ticket_with_creator
u = t.created_by_user
Account.new(u).destroy
assert_equal nil, Ticket.find(t.id)
end
end
|