mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 07:52:00 +08:00
![Sam](/assets/img/avatar_default.png)
This also handles a general case where exceptions leak out prior to being handled by the application controller
9 lines
232 B
Ruby
9 lines
232 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)
|
|
end
|
|
end
|