diaspora/spec/models/aspect_membership_spec.rb

32 lines
906 B
Ruby

# Copyright (c) 2010-2011, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
#
require 'spec_helper'
describe AspectMembership, :type => :model do
describe '#before_destroy' do
let(:aspect) { alice.aspects.create(name: "two") }
let(:contact) { alice.contact_for(bob.person) }
let(:am) { alice.aspects.where(name: "generic").first.aspect_memberships.first }
before do
allow(am).to receive(:user).and_return(alice)
end
it 'calls disconnect if its the last aspect for the contact' do
expect(alice).to receive(:disconnect).with(contact)
am.destroy
end
it 'does not call disconnect if its not the last aspect for the contact' do
expect(alice).not_to receive(:disconnect)
alice.add_contact_to_aspect(contact, aspect)
am.destroy
end
end
end