This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/spec/services/process_interaction_service_spec.rb

16 lines
580 B
Ruby
Raw Normal View History

2016-02-24 23:17:01 +00:00
require 'rails_helper'
RSpec.describe ProcessInteractionService do
subject { ProcessInteractionService.new }
it 'creates account for new remote user'
it 'updates account for existing remote user'
it 'ignores envelopes that do not address the local user'
it 'accepts a status that mentions the local user'
it 'accepts a status that is a reply to the local user\'s'
it 'accepts a favourite to a status by the local user'
it 'accepts a reblog of a status of the local user'
it 'accepts a follow of the local user'
it 'accepts an unfollow of the local user'
2016-02-24 23:17:01 +00:00
end