summaryrefslogtreecommitdiff
path: root/users/test
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-11-06 11:55:43 +0100
committerAzul <azul@leap.se>2013-11-06 11:55:43 +0100
commitded302ebc6a9e145775f7847c5e89f91d683c777 (patch)
tree890ea32fbbdfc9ccda2e05bbcce4b32b537b2cea /users/test
parent24598b5c5e4df20c423ec74ea8e9df1592483c6b (diff)
use the account lifecycle from UsersController#destroy
Diffstat (limited to 'users/test')
-rw-r--r--users/test/functional/users_controller_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/users/test/functional/users_controller_test.rb b/users/test/functional/users_controller_test.rb
index 75d900f..9c5f8d9 100644
--- a/users/test/functional/users_controller_test.rb
+++ b/users/test/functional/users_controller_test.rb
@@ -77,7 +77,11 @@ class UsersControllerTest < ActionController::TestCase
test "admin can destroy user" do
user = find_record :user
+
+ # we destroy the user record and the associated data...
user.expects(:destroy)
+ Identity.expects(:disable_all_for).with(user)
+ Ticket.expects(:destroy_all_from).with(user)
login :is_admin? => true
delete :destroy, :id => user.id
@@ -88,7 +92,11 @@ class UsersControllerTest < ActionController::TestCase
test "user can cancel account" do
user = find_record :user
+
+ # we destroy the user record and the associated data...
user.expects(:destroy)
+ Identity.expects(:disable_all_for).with(user)
+ Ticket.expects(:destroy_all_from).with(user)
login user
expect_logout