Add a way to view staff action logs in admin

This commit is contained in:
Neil Lalonde
2013-08-07 16:04:12 -04:00
parent d2fb6ec53f
commit 5c8c52482a
16 changed files with 231 additions and 24 deletions

View File

@@ -0,0 +1,22 @@
require 'spec_helper'
describe Admin::StaffActionLogsController do
it "is a subclass of AdminController" do
(Admin::StaffActionLogsController < Admin::AdminController).should be_true
end
let!(:user) { log_in(:admin) }
context '.index' do
before do
xhr :get, :index
end
subject { response }
it { should be_success }
it 'returns JSON' do
::JSON.parse(subject.body).should be_a(Array)
end
end
end