32 lines
542 B
Ruby
32 lines
542 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'
|
|
|
|
require File.join(Rails.root, 'lib/postzord')
|
|
require File.join(Rails.root, 'lib/postzord/receiver/public')
|
|
|
|
describe Postzord::Receiver::Public do
|
|
|
|
describe '#initialize' do
|
|
|
|
end
|
|
|
|
describe '#verify_signature' do
|
|
|
|
end
|
|
|
|
describe '#collect_recipients' do
|
|
|
|
end
|
|
|
|
describe '#batch_insert_visibilities' do
|
|
|
|
end
|
|
|
|
describe '#batch_notify' do
|
|
|
|
end
|
|
|
|
end
|