about summary refs log tree commit diff
path: root/spec/controllers/api/v1/blocks_controller_spec.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-12-29 20:12:32 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-12-29 20:12:32 +0100
commit49834a6e7f06301a5bcc17b8771ed4513622b6a8 (patch)
treef0e48340e59700ace604701f25345c1532875c4b /spec/controllers/api/v1/blocks_controller_spec.rb
parent8724094ed0e531f4435bf2784c9c1b7176acd764 (diff)
Add API for retrieving blocked accounts
Diffstat (limited to 'spec/controllers/api/v1/blocks_controller_spec.rb')
-rw-r--r--spec/controllers/api/v1/blocks_controller_spec.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/controllers/api/v1/blocks_controller_spec.rb b/spec/controllers/api/v1/blocks_controller_spec.rb
new file mode 100644
index 000000000..ca20a2d17
--- /dev/null
+++ b/spec/controllers/api/v1/blocks_controller_spec.rb
@@ -0,0 +1,19 @@
+require 'rails_helper'
+
+RSpec.describe Api::V1::BlocksController, type: :controller do
+  render_views
+
+  let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
+  let(:token) { double acceptable?: true, resource_owner_id: user.id }
+
+  before do
+    allow(controller).to receive(:doorkeeper_token) { token }
+  end
+
+  describe 'GET #index' do
+    it 'returns http success' do
+      get :index
+      expect(response).to have_http_status(:success)
+    end
+  end
+end