fix issue #217 (memberships not correctly removed)

This commit is contained in:
did 2011-09-28 18:27:29 +02:00
parent 544e9e5c3c
commit 016d773b2d
2 changed files with 7 additions and 6 deletions

View File

@ -47,12 +47,12 @@ class Account
def remove_memberships!
self.sites.each do |site|
site.memberships.delete_if { |m| m.account_id == self._id }
membership = site.memberships.where(:account_id => self._id).first
if site.admin_memberships.empty?
if site.admin_memberships.size == 1 && membership.admin?
raise I18n.t('errors.messages.needs_admin_account')
else
site.save
membership.destroy
end
end
end

View File

@ -47,13 +47,14 @@ describe Account do
end
it 'should also delete memberships' do
Site.any_instance.stubs(:admin_memberships).returns(['junk'])
Site.any_instance.stubs(:admin_memberships).returns(['junk', 'dirt'])
@site_1.memberships.first.expects(:destroy)
@site_2.memberships.first.expects(:destroy)
@account.destroy
@site_1.memberships.should be_empty
@site_2.memberships.should be_empty
end
it 'should raise an exception if account is the only remaining admin' do
@site_1.memberships.first.stubs(:admin?).returns(true)
@site_1.stubs(:admin_memberships).returns(['junk'])
lambda {
@account.destroy