Skip to content
Snippets Groups Projects
Unverified Commit 16ede59d authored by Matt Jankowski's avatar Matt Jankowski Committed by GitHub
Browse files

Controller spec to request spec: `api/v1/featured_tags/suggestions` (#28298)

parent 809506bd
No related branches found
No related tags found
No related merge requests found
......@@ -2,20 +2,16 @@
require 'rails_helper'
describe Api::V1::FeaturedTags::SuggestionsController do
render_views
describe 'Featured Tags Suggestions API' do
let(:user) { Fabricate(:user) }
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:accounts') }
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
let(:scopes) { 'read:accounts' }
let(:headers) { { 'Authorization' => "Bearer #{token.token}" } }
let(:account) { Fabricate(:account) }
before do
allow(controller).to receive(:doorkeeper_token) { token }
end
describe 'GET #index' do
describe 'GET /api/v1/featured_tags/suggestions' do
it 'returns http success' do
get :index, params: { account_id: account.id, limit: 2 }
get '/api/v1/featured_tags/suggestions', params: { account_id: account.id, limit: 2 }, headers: headers
expect(response).to have_http_status(200)
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment