mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
18 lines
507 B
Ruby
18 lines
507 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe 'Suggestions API' do
|
|
let(:user) { Fabricate(:user) }
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
|
let(:scopes) { 'read' }
|
|
let(:headers) { { 'Authorization' => "Bearer #{token.token}" } }
|
|
|
|
describe 'GET /api/v2/suggestions' do
|
|
it 'returns http success' do
|
|
get '/api/v2/suggestions', headers: headers
|
|
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
end
|