mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 18:10:54 +00:00
go fmt
This commit is contained in:
parent
272271f588
commit
2a2b433e19
@ -61,8 +61,8 @@ func TestNamespaceNest(t *testing.T) {
|
|||||||
ns.Namespace(
|
ns.Namespace(
|
||||||
NewNamespace("/admin").
|
NewNamespace("/admin").
|
||||||
Get("/order", func(ctx *context.Context) {
|
Get("/order", func(ctx *context.Context) {
|
||||||
ctx.Output.Body([]byte("order"))
|
ctx.Output.Body([]byte("order"))
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
AddNamespace(ns)
|
AddNamespace(ns)
|
||||||
BeeApp.Handlers.ServeHTTP(w, r)
|
BeeApp.Handlers.ServeHTTP(w, r)
|
||||||
@ -79,8 +79,8 @@ func TestNamespaceNestParam(t *testing.T) {
|
|||||||
ns.Namespace(
|
ns.Namespace(
|
||||||
NewNamespace("/admin").
|
NewNamespace("/admin").
|
||||||
Get("/order/:id", func(ctx *context.Context) {
|
Get("/order/:id", func(ctx *context.Context) {
|
||||||
ctx.Output.Body([]byte(ctx.Input.Param(":id")))
|
ctx.Output.Body([]byte(ctx.Input.Param(":id")))
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
AddNamespace(ns)
|
AddNamespace(ns)
|
||||||
BeeApp.Handlers.ServeHTTP(w, r)
|
BeeApp.Handlers.ServeHTTP(w, r)
|
||||||
@ -124,8 +124,8 @@ func TestNamespaceFilter(t *testing.T) {
|
|||||||
ctx.Output.Body([]byte("this is Filter"))
|
ctx.Output.Body([]byte("this is Filter"))
|
||||||
}).
|
}).
|
||||||
Get("/user/:id", func(ctx *context.Context) {
|
Get("/user/:id", func(ctx *context.Context) {
|
||||||
ctx.Output.Body([]byte(ctx.Input.Param(":id")))
|
ctx.Output.Body([]byte(ctx.Input.Param(":id")))
|
||||||
})
|
})
|
||||||
AddNamespace(ns)
|
AddNamespace(ns)
|
||||||
BeeApp.Handlers.ServeHTTP(w, r)
|
BeeApp.Handlers.ServeHTTP(w, r)
|
||||||
if w.Body.String() != "this is Filter" {
|
if w.Body.String() != "this is Filter" {
|
||||||
|
Loading…
Reference in New Issue
Block a user