From d9ca46b464dc5a5eb0ad308809c15a79dcd17ada Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 2 Feb 2017 00:03:31 +0100 Subject: Cleaning up format of broadcast real-time messages, removing redis-backed "mentions" timeline as redundant (given notifications) --- spec/controllers/api/v1/timelines_controller_spec.rb | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'spec/controllers') diff --git a/spec/controllers/api/v1/timelines_controller_spec.rb b/spec/controllers/api/v1/timelines_controller_spec.rb index 5e9954baf..72eed1e5a 100644 --- a/spec/controllers/api/v1/timelines_controller_spec.rb +++ b/spec/controllers/api/v1/timelines_controller_spec.rb @@ -19,13 +19,6 @@ RSpec.describe Api::V1::TimelinesController, type: :controller do end end - describe 'GET #mentions' do - it 'returns http success' do - get :mentions - expect(response).to have_http_status(:success) - end - end - describe 'GET #public' do it 'returns http success' do get :public @@ -55,13 +48,6 @@ RSpec.describe Api::V1::TimelinesController, type: :controller do end end - describe 'GET #mentions' do - it 'returns http unprocessable entity' do - get :mentions - expect(response).to have_http_status(:unprocessable_entity) - end - end - describe 'GET #public' do it 'returns http success' do get :public -- cgit