Newer
Older
# 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 '#perform' do
Ilya Zhitomirskiy
a validé
it 'performs the account deletion' do
allow(AccountDeletion).to receive(:find).and_return(account_deletion)
expect(account_deletion).to receive(:perform!)
Ilya Zhitomirskiy
a validé
end
end
end