diaspora/spec/models/jobs/notify_local_users_spec.rb

18 lines
604 B
Ruby

# Copyright (c) 2010, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
require 'spec_helper'
describe Job::NotifyLocalUsers do
describe '#perfom' do
it 'should call Notification.notify on the object' do
user = alice
person = Factory :person
object = Factory :status_message
Notification.should_receive(:notify).with(instance_of(User), instance_of(StatusMessage), instance_of(Person))
Job::NotifyLocalUsers.perform(user.id, object.class.to_s, object.id, person.id)
end
end
end