mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:39:36 +08:00
10 lines
254 B
Ruby
10 lines
254 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe "Admin::AdminController" do
|
|
it "should return the right response if user isn't a staff" do
|
|
expect do
|
|
get "/admin", api_key: 'asdiasiduga'
|
|
end.to raise_error(ActionController::RoutingError)
|
|
end
|
|
end
|