about summary refs log tree commit diff
path: root/spec/controllers/admin
diff options
context:
space:
mode:
authorysksn <bluewhale1982@gmail.com>2018-12-15 04:37:01 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-12-14 20:37:01 +0100
commit3c31c28605a8934ee509ddeb9b7b3ebb8d1c40ba (patch)
tree2ef6e00ff53630d2a262250ce01e9d1b4f35beab /spec/controllers/admin
parent458e2b0c5b982999d0bd6695b96da9ccfca66664 (diff)
Add spec for Admin::ActionLogsController#index (#9522)
Diffstat (limited to 'spec/controllers/admin')
-rw-r--r--spec/controllers/admin/action_logs_controller_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/controllers/admin/action_logs_controller_spec.rb b/spec/controllers/admin/action_logs_controller_spec.rb
new file mode 100644
index 000000000..4720ed2e2
--- /dev/null
+++ b/spec/controllers/admin/action_logs_controller_spec.rb
@@ -0,0 +1,14 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe Admin::ActionLogsController, type: :controller do
+  describe 'GET #index' do
+    it 'returns 200' do
+      sign_in Fabricate(:user, admin: true)
+      get :index, params: { page: 1 }
+
+      expect(response).to have_http_status(200)
+    end
+  end
+end