mirror of
https://github.com/labstack/echo.git
synced 2025-07-03 00:56:59 +02:00
@ -4,7 +4,7 @@ import "testing"
|
||||
|
||||
func TestGroup(t *testing.T) {
|
||||
g := New().Group("/group")
|
||||
h := HandlerFunc(func(Context) error { return nil })
|
||||
h := func(Context) error { return nil }
|
||||
g.Connect("/", h)
|
||||
g.Delete("/", h)
|
||||
g.Get("/", h)
|
||||
|
Reference in New Issue
Block a user