summaryrefslogtreecommitdiff
path: root/test/integration/api/update_account_test.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-11-21 16:14:38 +0100
committerAzul <azul@riseup.net>2017-03-23 09:49:17 +0100
commit1e672227a23afbb9f319a0aefa0b0ca3495fa1c6 (patch)
treef16e3d9f830cef89d523ef2da66fd27bb2afd426 /test/integration/api/update_account_test.rb
parent3efe125d6e3bd5f4eecd18952376ffc37e09b9c5 (diff)
bugfix: handle couch 404s
our special error handler for json requests would turn all exceptions into 500s - removed it. now the rescue_responses can do their thing again.
Diffstat (limited to 'test/integration/api/update_account_test.rb')
-rw-r--r--test/integration/api/update_account_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/integration/api/update_account_test.rb b/test/integration/api/update_account_test.rb
index 108f05d..f083dbc 100644
--- a/test/integration/api/update_account_test.rb
+++ b/test/integration/api/update_account_test.rb
@@ -54,4 +54,12 @@ class UpdateAccountTest < SrpTest
# does not change login if no password_verifier is present
assert_equal original_login, @user.reload.login
end
+
+ test "destroy account" do
+ authenticate
+ url = api_url("users/#{@user.id}.json?identities=destroy")
+ delete url, nil, auth_headers
+ assert last_response.successful?
+ end
+
end