about summary refs log tree commit diff
diff options
context:
space:
mode:
authorysksn <bluewhale1982@gmail.com>2018-12-17 19:36:20 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-12-17 11:36:20 +0100
commit0c8071523592fc4ce73aa5c39822ca5d7f5f71d7 (patch)
tree61748a8b08f10bafab2edf792c63ddfa5dd3ad10
parent351938520d5e5e8792772fd5f8ad30ba3e11639c (diff)
Add spec for Api::V1::Timelines::DirectController (#9547)
-rw-r--r--spec/controllers/api/v1/timelines/direct_controller_spec.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/controllers/api/v1/timelines/direct_controller_spec.rb b/spec/controllers/api/v1/timelines/direct_controller_spec.rb
new file mode 100644
index 000000000..a22c2cbea
--- /dev/null
+++ b/spec/controllers/api/v1/timelines/direct_controller_spec.rb
@@ -0,0 +1,17 @@
+# 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