Skip to content

Commit

Permalink
Cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed May 9, 2015
1 parent b690611 commit d6771dc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
9 changes: 3 additions & 6 deletions context.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,25 +184,22 @@ func (c *Context) ParamValue(key string) (va string) {
func (c *Context) DefaultPostFormValue(key, defaultValue string) string {
if va, ok := c.postFormValue(key); ok {
return va
} else {
return defaultValue
}
return defaultValue
}

func (c *Context) DefaultFormValue(key, defaultValue string) string {
if va, ok := c.formValue(key); ok {
return va
} else {
return defaultValue
}
return defaultValue
}

func (c *Context) DefaultParamValue(key, defaultValue string) string {
if va, ok := c.paramValue(key); ok {
return va
} else {
return defaultValue
}
return defaultValue
}

func (c *Context) paramValue(key string) (string, bool) {
Expand Down
22 changes: 11 additions & 11 deletions logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,32 +75,32 @@ func LoggerWithFile(out io.Writer) HandlerFunc {

func colorForStatus(code int) string {
switch {
case code >= 200 && code <= 299:
case code >= 200 && code < 300:
return green
case code >= 300 && code <= 399:
case code >= 300 && code < 400:
return white
case code >= 400 && code <= 499:
case code >= 400 && code < 500:
return yellow
default:
return red
}
}

func colorForMethod(method string) string {
switch {
case method == "GET":
switch method {
case "GET":
return blue
case method == "POST":
case "POST":
return cyan
case method == "PUT":
case "PUT":
return yellow
case method == "DELETE":
case "DELETE":
return red
case method == "PATCH":
case "PATCH":
return green
case method == "HEAD":
case "HEAD":
return magenta
case method == "OPTIONS":
case "OPTIONS":
return white
default:
return reset
Expand Down
3 changes: 3 additions & 0 deletions render/render_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ import (
"github.com/stretchr/testify/assert"
)

// TODO unit tests
// test errors

func TestRenderJSON(t *testing.T) {
w := httptest.NewRecorder()
w2 := httptest.NewRecorder()
Expand Down

0 comments on commit d6771dc

Please sign in to comment.