1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-24 08:22:21 +02:00

test for nested group

This commit is contained in:
Tim Anema 2015-04-26 18:27:20 -04:00
parent e11de1df62
commit 8dd92bce97

View File

@ -218,6 +218,19 @@ func TestEchoGroup(t *testing.T) {
if b.String() != "3" {
t.Errorf("should execute middleware 3, executed %s", b.String())
}
// Nested Group
g3 := e.Group("/group3")
g4 := g3.Group("/group4")
g4.Get("/test", func(c *Context) {
c.String(http.StatusOK, "okay")
})
w = httptest.NewRecorder()
r, _ = http.NewRequest(GET, "/group3/group4/test", nil)
e.ServeHTTP(w, r)
if w.Body.String() != "okay" {
t.Error("body should be okay")
}
}
func TestEchoMethod(t *testing.T) {