diaspora/spec/models/job/notify_local_users_spec.rb
2011-09-12 17:02:40 -07:00

17 lines
602 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 for each user' do
person = Factory :person
object = Factory :status_message
Notification.should_receive(:notify).with(instance_of(User), instance_of(StatusMessage), instance_of(Person)).twice
Job::NotifyLocalUsers.perform([alice.id, eve.id], object.class.to_s, object.id, person.id)
end
end
end