mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
20 lines
355 B
Ruby
20 lines
355 B
Ruby
require 'spec_helper'
|
|
|
|
describe Admin::AdminController do
|
|
|
|
context 'index' do
|
|
|
|
it 'needs you to be logged in' do
|
|
expect { xhr :get, :index }.to raise_error(Discourse::NotLoggedIn)
|
|
end
|
|
|
|
it "raises an error if you aren't an admin" do
|
|
user = log_in
|
|
xhr :get, :index
|
|
expect(response).to be_forbidden
|
|
end
|
|
|
|
end
|
|
|
|
|
|
end
|