2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
describe Admin::AdminController do
|
|
|
|
|
|
|
|
context 'index' do
|
|
|
|
|
|
|
|
it 'needs you to be logged in' do
|
2015-01-09 12:04:02 -05:00
|
|
|
expect { xhr :get, :index }.to raise_error(Discourse::NotLoggedIn)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an error if you aren't an admin" do
|
|
|
|
user = log_in
|
|
|
|
xhr :get, :index
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to be_forbidden
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|