chore: make print pretty (#1967)

This commit is contained in:
Kevin Wan
2022-06-04 19:53:22 +08:00
committed by GitHub
parent 6c94e4652e
commit f366e1d936
2 changed files with 7 additions and 5 deletions

View File

@@ -196,8 +196,9 @@ func (ng *engine) print() {
sort.Strings(routes) sort.Strings(routes)
fmt.Println("routes:")
for _, route := range routes { for _, route := range routes {
fmt.Println(route) fmt.Printf(" %s\n", route)
} }
} }

View File

@@ -350,10 +350,11 @@ func TestServer_PrintRoutes(t *testing.T) {
Name: foo Name: foo
Port: 54321 Port: 54321
` `
expect = `GET /bar expect = `routes:
GET /foo GET /bar
GET /foo/:bar GET /foo
GET /foo/:bar/baz GET /foo/:bar
GET /foo/:bar/baz
` `
) )