discourse/spec/requests/admin/admin_controller_spec.rb
Sam 49ed382c2a FIX: return 429 when admin api key is limited on admin route
This also handles a general case where exceptions leak out prior to being handled by the application controller
2018-01-12 14:15:26 +11:00

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