diff options
author | varac <varac@users.noreply.github.com> | 2015-12-01 16:10:18 +0100 |
---|---|---|
committer | varac <varac@users.noreply.github.com> | 2015-12-01 16:10:18 +0100 |
commit | bd06baca709cf4b78d831bff15720c74a66b38b2 (patch) | |
tree | 90ff22126d6a0b7d30ef873e94c79b175c5c5b20 /tests/helpers/bonafide_helper.rb | |
parent | b610c85e9872b5f9347a52af1fe6acb9a2662530 (diff) | |
parent | d610405e585966406fd9813423e300a39ef300b5 (diff) |
Merge pull request #89 from pixelated/webapp_test
Webapp test: don't check in database if user was deleted.
Diffstat (limited to 'tests/helpers/bonafide_helper.rb')
-rw-r--r-- | tests/helpers/bonafide_helper.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/helpers/bonafide_helper.rb b/tests/helpers/bonafide_helper.rb index 82db3973..20c3ca8d 100644 --- a/tests/helpers/bonafide_helper.rb +++ b/tests/helpers/bonafide_helper.rb @@ -98,14 +98,6 @@ class LeapTest assert(response = JSON.parse(body), 'Delete response should be JSON') assert(response["success"], 'Deleting user should be a success') end - domain = property('domain.full_suffix') - identities_url = couchdb_url("/identities/_design/Identity/_view/by_address?key=%22#{user.username}@#{domain}%22") - get(identities_url) do |body, response, error| - assert error.nil?, "Error checking identities db: #{error}" - assert response.code.to_i == 200, "Unable to check that user identity was deleted: HTTP response from API should have code 200, was #{response.code} #{error} #{body}" - assert(response = JSON.parse(body), 'Couch response should be JSON') - assert response['rows'].empty?, "Identity should have been deleted for test user #{user.username} (id #{user.id}), but was not! Response was: #{body}." - end end end |