diff options
author | Doug Black <doug@dougblack.io> | 2014-04-24 20:52:41 -0700 |
---|---|---|
committer | Doug Black <doug@dougblack.io> | 2014-04-24 20:52:41 -0700 |
commit | 929e726c5f2604cdcb95a2e82b7002a51f1858aa (patch) | |
tree | cad5bc217f8d2a8692166bad49202e3a1f739e29 | |
parent | s/muxPointer/mux/ (diff) | |
parent | Always create readable JSON strings. http://www.vinaysahni.com/best-practices... (diff) | |
download | sleepy-929e726c5f2604cdcb95a2e82b7002a51f1858aa.tar.gz sleepy-929e726c5f2604cdcb95a2e82b7002a51f1858aa.tar.bz2 sleepy-929e726c5f2604cdcb95a2e82b7002a51f1858aa.zip |
Merge pull request #20 from strukturag/pretty_print
Always create readable JSON strings.
-rw-r--r-- | core.go | 2 | ||||
-rw-r--r-- | core_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -91,7 +91,7 @@ func (api *API) requestHandler(resource interface{}) http.HandlerFunc { code, data, header := handler(request.Form, request.Header) - content, err := json.Marshal(data) + content, err := json.MarshalIndent(data, "", " ") if err != nil { rw.WriteHeader(http.StatusInternalServerError) return diff --git a/core_test.go b/core_test.go index 2438b98..8027bfe 100644 --- a/core_test.go +++ b/core_test.go @@ -27,7 +27,7 @@ func TestBasicGet(t *testing.T) { t.Error(err) } body, _ := ioutil.ReadAll(resp.Body) - if string(body) != `{"items":["item1","item2"]}` { + if string(body) != "{\n \"items\": [\n \"item1\",\n \"item2\"\n ]\n}" { t.Error("Not equal.") } } |