about summary refs log tree commit diff
diff options
context:
space:
mode:
authorysksn <bluewhale1982@gmail.com>2018-12-15 04:36:18 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-12-14 20:36:18 +0100
commitc1600a0f69c1453c76c3baf45c41271c7b526146 (patch)
treeffec30ad8145b9c6587be5ecfe6216640e4e97b8
parentaa7a8a30310fc68385d1df7aa20ceca6c2aca497 (diff)
Add spec for Admin::DashboardController#index (#9523)
-rw-r--r--spec/controllers/admin/dashboard_controller_spec.rb14
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