From e85b8af05183d1048adc4a39bc3d975af153463d Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Thu, 9 May 2019 09:40:09 -0500 Subject: Second round of Rspec fixes. --- spec/controllers/api/v1/follows_controller_spec.rb | 8 -------- 1 file changed, 8 deletions(-) (limited to 'spec/controllers/api/v1/follows_controller_spec.rb') diff --git a/spec/controllers/api/v1/follows_controller_spec.rb b/spec/controllers/api/v1/follows_controller_spec.rb index 089e0fe5e..df335cc5d 100644 --- a/spec/controllers/api/v1/follows_controller_spec.rb +++ b/spec/controllers/api/v1/follows_controller_spec.rb @@ -35,14 +35,6 @@ RSpec.describe Api::V1::FollowsController, type: :controller do expect(user.account.following?(Account.find_by(username: 'gargron', domain: 'quitter.no'))).to be true end - it 'sends a salmon slap to the remote user' do - expect(a_request(:post, "https://quitter.no/main/salmon/user/7477")).to have_been_made - end - - it 'subscribes to remote hub' do - expect(a_request(:post, "https://quitter.no/main/push/hub")).to have_been_made - end - it 'returns http success if already following, too' do post :create, params: { uri: 'gargron@quitter.no' } expect(response).to have_http_status(200) -- cgit