mirror of
https://github.com/labstack/echo.git
synced 2025-11-29 22:48:07 +02:00
Removed RedirectToSlash middleware
Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
@@ -16,12 +16,3 @@ func TestStripTrailingSlash(t *testing.T) {
|
||||
StripTrailingSlash()(c)
|
||||
assert.Equal(t, "/users", c.Request().URL.Path)
|
||||
}
|
||||
|
||||
func TestRedirectToSlash(t *testing.T) {
|
||||
req, _ := http.NewRequest(echo.GET, "/users", nil)
|
||||
rec := httptest.NewRecorder()
|
||||
c := echo.NewContext(req, echo.NewResponse(rec), echo.New())
|
||||
RedirectToSlash(RedirectToSlashOptions{Code: http.StatusTemporaryRedirect})(c)
|
||||
assert.Equal(t, http.StatusTemporaryRedirect, rec.Code)
|
||||
assert.Equal(t, "/users/", c.Response().Header().Get("Location"))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user