1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-27 12:03:45 +00:00
This commit is contained in:
Fenny 2020-02-12 01:35:37 +01:00
parent 07e0e483fa
commit 5c131f91a9

View File

@ -75,7 +75,7 @@ func Test_Group(t *testing.T) {
app := New()
grp := app.Group("/test")
grp.Get("/", handler)
grp.Get("/test/test", handler)
grp.Get("/test/:demo?", handler)
grp.Connect("/CONNECT", handler)
grp.Put("/PUT", handler)
grp.Post("/POST", handler)