From: ysksn Date: Fri, 14 Dec 2018 19:36:18 +0000 (+0900) Subject: Add spec for Admin::DashboardController#index (#9523) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=c1600a0f69c1453c76c3baf45c41271c7b526146;p=mastodon.git Add spec for Admin::DashboardController#index (#9523) --- diff --git a/spec/controllers/admin/dashboard_controller_spec.rb b/spec/controllers/admin/dashboard_controller_spec.rb new file mode 100644 index 000000000..73b50e721 --- /dev/null +++ b/spec/controllers/admin/dashboard_controller_spec.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +require 'rails_helper' + +describe Admin::DashboardController, type: :controller do + describe 'GET #index' do + it 'returns 200' do + sign_in Fabricate(:user, admin: true) + get :index + + expect(response).to have_http_status(200) + end + end +end