1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-22 20:06:21 +02:00
echo/group_test.go
Vishal Rana ec83e2407f Closed #319
Signed-off-by: Vishal Rana <vr@labstack.com>
2016-01-14 08:02:18 -08:00

24 lines
483 B
Go

package echo
import "testing"
func TestGroup(t *testing.T) {
g := New().Group("/group")
h := 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)
g.Any("/", h)
g.Match([]string{GET, POST}, "/", h)
g.WebSocket("/ws", h)
g.Static("/scripts", "scripts")
g.ServeDir("/scripts", "scripts")
g.ServeFile("/scripts/main.js", "scripts/main.js")
}