mirror of
https://github.com/labstack/echo.git
synced 2024-12-24 20:14:31 +02:00
b4da73313f
Signed-off-by: Vishal Rana <vr@labstack.com>
19 lines
409 B
Go
19 lines
409 B
Go
package middleware
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/labstack/echo"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestStripTrailingSlash(t *testing.T) {
|
|
req, _ := http.NewRequest(echo.GET, "/users/", nil)
|
|
rec := httptest.NewRecorder()
|
|
c := echo.NewContext(req, echo.NewResponse(rec), echo.New())
|
|
StripTrailingSlash()(c)
|
|
assert.Equal(t, "/users", c.Request().URL.Path)
|
|
}
|