Files
echo/group_test.go
T

24 lines
483 B
Go
Raw Permalink Normal View History

2015-05-29 16:00:02 -07:00
package echo
import "testing"
2015-05-30 15:20:36 -07:00
func TestGroup(t *testing.T) {
2015-05-29 16:00:02 -07:00
g := New().Group("/group")
2015-05-30 15:20:36 -07:00
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)
2016-01-09 10:34:34 -08:00
g.Any("/", h)
g.Match([]string{GET, POST}, "/", h)
2015-05-30 15:20:36 -07:00
g.WebSocket("/ws", h)
g.Static("/scripts", "scripts")
g.ServeDir("/scripts", "scripts")
g.ServeFile("/scripts/main.js", "scripts/main.js")
2015-05-29 16:00:02 -07:00
}