mastodon/spec/services/activitypub/process_collection_service_spec.rb
Eugen Rochko 00840f4f2e Add handling of Linked Data Signatures in payloads (#4687)
* Add handling of Linked Data Signatures in payloads

* Add a way to sign JSON, fix canonicalization of signature options

* Fix signatureValue encoding, send out signed JSON when distributing

* Add missing security context
2017-08-26 13:47:38 +02:00

11 lines
231 B
Ruby

require 'rails_helper'
RSpec.describe ActivityPub::ProcessCollectionService do
subject { described_class.new }
describe '#call' do
context 'when actor is the sender'
context 'when actor differs from sender'
end
end