discourse/spec/requests/admin/admin_controller_spec.rb

10 lines
252 B
Ruby
Raw Normal View History

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