about summary refs log blame commit diff
path: root/spec/controllers/api/v1/accounts/search_controller_spec.rb
blob: 8ff2b17deed98bd1d9b4e0d010347b7d41c10f2d (plain) (tree)
1
2
3
4
5
6
7




                                                                                   
                                                                                                          







                                                             
                                               

       
require 'rails_helper'

RSpec.describe Api::V1::Accounts::SearchController, type: :controller do
  render_views

  let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
  let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:accounts') }

  before do
    allow(controller).to receive(:doorkeeper_token) { token }
  end

  describe 'GET #show' do
    it 'returns http success' do
      get :show, params: { q: 'query' }

      expect(response).to have_http_status(200)
    end
  end
end