18 lines
539 B
Ruby
18 lines
539 B
Ruby
require 'spec_helper'
|
|
describe Job::ReceiveLocalBatch do
|
|
#takes author id, post id and array of receiving user ids
|
|
#for each recipient, it gets the aspects that the author is in
|
|
#Gets all the aspect ids, and inserts into post_visibilities for each aspect
|
|
#Then it sockets to those users
|
|
#And notifies mentioned people
|
|
before do
|
|
@post = alice.build_post(:status_message, :text => 'Hey Bob')
|
|
@post.save!
|
|
end
|
|
|
|
describe '.perform' do
|
|
it 'calls Postzord::Receiver::LocalPostBatch' do
|
|
pending
|
|
end
|
|
end
|
|
end
|