1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-27 01:52:55 -05:00
2018-04-21 21:35:07 +02:00

23 lines
527 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Api::V1::InstancesController, 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) }
before do
allow(controller).to receive(:doorkeeper_token) { token }
end
describe 'GET #show' do
it 'returns http success' do
get :show
expect(response).to have_http_status(200)
end
end
end