about summary refs log tree commit diff
path: root/spec/controllers/admin/instances_controller_spec.rb
blob: c50ea352f76817fb149e802d61337f8b848976cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rails_helper'

RSpec.describe Admin::InstancesController, type: :controller do
  before do
    sign_in Fabricate(:user, admin: true), scope: :user
  end

  describe 'GET #index' do
    it 'returns http success' do
      get :index

      expect(response).to have_http_status(:success)
    end
  end
end