1
0
mirror of https://github.com/json-iterator/go.git synced 2025-11-23 22:34:49 +02:00

Formated, doced. Also fixed few minor bugs.

This commit is contained in:
SuperFashi
2017-01-05 21:23:08 +08:00
parent 97849e019f
commit d63a00f0bf
24 changed files with 438 additions and 402 deletions

View File

@@ -1,11 +1,10 @@
package jsoniter
import (
"testing"
"encoding/json"
"testing"
)
func Test_skip_number(t *testing.T) {
iter := ParseString(`[-0.12, "b"]`)
iter.ReadArray()
@@ -148,4 +147,4 @@ func Benchmark_json_skip(b *testing.B) {
result := TestResp{}
json.Unmarshal(input, &result)
}
}
}