闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
466 B

  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. RSpec.describe Api::V1::EndorsementsController, type: :controller do
  4. let(:user) { Fabricate(:user) }
  5. let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:accounts') }
  6. describe 'GET #index' do
  7. it 'returns 200' do
  8. allow(controller).to receive(:doorkeeper_token) { token }
  9. get :index
  10. expect(response).to have_http_status(200)
  11. end
  12. end
  13. end