1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-01 00:08:21 +09:00
mastodon/spec/services/process_feed_service_spec.rb
Eugen Rochko adffc7a495 Fix #43
2016-09-18 12:28:49 +02:00

13 lines
282 B
Ruby

require 'rails_helper'
RSpec.describe ProcessFeedService do
subject { ProcessFeedService.new }
it 'updates remote user\'s account information'
it 'creates posts'
it 'creates reblogs'
it 'creates replies'
it 'creates reblogged replies'
it 'deletes removed posts'
end