From 3b4e04dc32eba0f5b1ac11e2db2edd7ca7351291 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 5 Mar 2016 12:50:59 +0100 Subject: Fixing some bugs, adding pending test examples --- spec/services/process_interaction_service_spec.rb | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'spec/services/process_interaction_service_spec.rb') diff --git a/spec/services/process_interaction_service_spec.rb b/spec/services/process_interaction_service_spec.rb index 8624d0b0c..931815dc2 100644 --- a/spec/services/process_interaction_service_spec.rb +++ b/spec/services/process_interaction_service_spec.rb @@ -1,5 +1,15 @@ require 'rails_helper' RSpec.describe ProcessInteractionService do - pending + 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' end -- cgit