mastodon/spec/services/process_feed_service_spec.rb

13 lines
282 B
Ruby
Raw Normal View History

2016-02-25 00:17:01 +01:00
require 'rails_helper'
RSpec.describe ProcessFeedService do
subject { ProcessFeedService.new }
it 'updates remote user\'s account information'
2016-09-18 12:28:49 +02:00
it 'creates posts'
it 'creates reblogs'
it 'creates replies'
it 'creates reblogged replies'
it 'deletes removed posts'
2016-02-25 00:17:01 +01:00
end