Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/spec/controllers/admin/base_controller_spec.rb
2017-05-26 14:13:26 +02:00

26 lines
605 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe Admin::BaseController, type: :controller do
controller do
def success
render 'admin/reports/show'
end
end
it 'renders admin layout' do
routes.draw { get 'success' => 'admin/base#success' }
sign_in(Fabricate(:user, admin: true))
get :success
expect(response).to render_template layout: 'admin'
end
it 'requires administrator' do
routes.draw { get 'success' => 'admin/base#success' }
sign_in(Fabricate(:user, admin: false))
get :success
expect(response).to redirect_to('/')
end
end