summaryrefslogtreecommitdiff
path: root/vendor/github.com/gorilla/mux/test_helpers.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-10-22 21:17:47 +0200
committerxengineering <me@xengineering.eu>2024-10-22 21:53:30 +0200
commitdbc874e2b9f300bea7a18deda32e784afb0ab89a (patch)
tree88c84964765eaf71944fcdfb42a364176984fbd9 /vendor/github.com/gorilla/mux/test_helpers.go
parent38115772ff49bffe6d428c857ca345ee1087a5e7 (diff)
downloadceres-dbc874e2b9f300bea7a18deda32e784afb0ab89a.tar
ceres-dbc874e2b9f300bea7a18deda32e784afb0ab89a.tar.zst
ceres-dbc874e2b9f300bea7a18deda32e784afb0ab89a.zip
Remove github.com/gorilla/mux dependency
The reason for the introduction of this dependency was that it was easy to setup routes with HTTP method restrictions. Since Go 1.22 this feature is part of the standard library. Method restrictions are part of the patterns used to register routes [1]. [1]: https://pkg.go.dev/net/http#hdr-Patterns-ServeMux
Diffstat (limited to 'vendor/github.com/gorilla/mux/test_helpers.go')
-rw-r--r--vendor/github.com/gorilla/mux/test_helpers.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/vendor/github.com/gorilla/mux/test_helpers.go b/vendor/github.com/gorilla/mux/test_helpers.go
deleted file mode 100644
index 5f5c496..0000000
--- a/vendor/github.com/gorilla/mux/test_helpers.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2012 The Gorilla Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package mux
-
-import "net/http"
-
-// SetURLVars sets the URL variables for the given request, to be accessed via
-// mux.Vars for testing route behaviour. Arguments are not modified, a shallow
-// copy is returned.
-//
-// This API should only be used for testing purposes; it provides a way to
-// inject variables into the request context. Alternatively, URL variables
-// can be set by making a route that captures the required variables,
-// starting a server and sending the request to that server.
-func SetURLVars(r *http.Request, val map[string]string) *http.Request {
- return requestWithVars(r, val)
-}