diff options
author | ysksn <bluewhale1982@gmail.com> | 2018-12-15 04:36:18 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-12-14 20:36:18 +0100 |
commit | c1600a0f69c1453c76c3baf45c41271c7b526146 (patch) | |
tree | ffec30ad8145b9c6587be5ecfe6216640e4e97b8 /spec/controllers | |
parent | aa7a8a30310fc68385d1df7aa20ceca6c2aca497 (diff) |
Add spec for Admin::DashboardController#index (#9523)
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/admin/dashboard_controller_spec.rb | 14 |
1 files changed, 14 insertions, 0 deletions
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 |