mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
f2e7b74d88
When running `ensure_login_required` it should always happen prior to `check_xhr` cause check xhr will trigger a 200 response
12 lines
289 B
Ruby
12 lines
289 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::AdminController do
|
|
it "should return the right response if user isn't a staff" do
|
|
get "/admin", params: { api_key: 'asdiasiduga' }
|
|
expect(response.status).to eq(404)
|
|
|
|
get "/admin"
|
|
expect(response.status).to eq(404)
|
|
end
|
|
end
|