mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
caf3bd31eb
- Pre chain middleware Signed-off-by: Vishal Rana <vr@labstack.com>
18 lines
299 B
Go
18 lines
299 B
Go
package echo
|
|
|
|
import "testing"
|
|
|
|
func TestGroup(t *testing.T) {
|
|
g := New().Group("/group")
|
|
h := HandlerFunc(func(Context) error { return nil })
|
|
g.Connect("/", h)
|
|
g.Delete("/", h)
|
|
g.Get("/", h)
|
|
g.Head("/", h)
|
|
g.Options("/", h)
|
|
g.Patch("/", h)
|
|
g.Post("/", h)
|
|
g.Put("/", h)
|
|
g.Trace("/", h)
|
|
}
|