about summary refs log tree commit diff
path: root/spec/controllers/api/v1
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-07-05 02:14:56 +0200
committerGitHub <noreply@github.com>2019-07-05 02:14:56 +0200
commit3fd6ab99e69e736e10c7022f07dfa34b60a4e54d (patch)
tree221be79bd3e119ffc09405c517ab24ca0c902d4e /spec/controllers/api/v1
parent99924f282f53593e670c70a38450a1c0e2d24c20 (diff)
Remove deprecated REST API `GET /api/v1/timelines/direct` (#11212)
Diffstat (limited to 'spec/controllers/api/v1')
-rw-r--r--spec/controllers/api/v1/timelines/direct_controller_spec.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/spec/controllers/api/v1/timelines/direct_controller_spec.rb b/spec/controllers/api/v1/timelines/direct_controller_spec.rb
deleted file mode 100644
index a22c2cbea..000000000
--- a/spec/controllers/api/v1/timelines/direct_controller_spec.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-require 'rails_helper'
-
-RSpec.describe Api::V1::Timelines::DirectController, type: :controller do
-  let(:user)  { Fabricate(:user) }
-  let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:statuses') }
-
-  describe 'GET #show' do
-    it 'returns 200' do
-      allow(controller).to receive(:doorkeeper_token) { token }
-      get :show
-
-      expect(response).to have_http_status(200)
-    end
-  end
-end