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

12 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