2015-05-30 01:00:02 +02:00
|
|
|
package echo
|
|
|
|
|
|
|
|
import "testing"
|
|
|
|
|
2015-05-31 00:20:36 +02:00
|
|
|
func TestGroup(t *testing.T) {
|
|
|
|
g := New().Group("/group")
|
2015-12-04 03:23:53 +02:00
|
|
|
h := func(Context) error { return nil }
|
2015-05-31 00:20:36 +02:00
|
|
|
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.WebSocket("/ws", h)
|
|
|
|
g.Static("/scripts", "scripts")
|
|
|
|
g.ServeDir("/scripts", "scripts")
|
|
|
|
g.ServeFile("/scripts/main.js", "scripts/main.js")
|
2015-05-30 01:00:02 +02:00
|
|
|
}
|