Skip to content

Commit 720ab8d

Browse files
committed
add tests for #283
1 parent 8744d7c commit 720ab8d

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

Gopkg.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ ignored = ["github.com/davecgh/go-spew*","github.com/google/gofuzz*","github.com
2323

2424
[[constraint]]
2525
name = "github.com/modern-go/reflect2"
26-
version = "1.0.0"
26+
version = "1.0.1"

api_tests/decoder_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ func Test_decoder_more(t *testing.T) {
6161
should := require.New(t)
6262
decoder := jsoniter.NewDecoder(bytes.NewBufferString("abcde"))
6363
should.True(decoder.More())
64-
}
64+
}

extra/privat_fields.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package extra
22

33
import (
44
"github.com/json-iterator/go"
5-
"unicode"
65
"strings"
6+
"unicode"
77
)
88

99
// SupportPrivateFields include private fields when encoding/decoding
@@ -52,4 +52,3 @@ func calcFieldNames(originalFieldName string, tagProvidedFieldName string, whole
5252
}
5353
return fieldNames
5454
}
55-

value_tests/struct_test.go

+7
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,13 @@ func init() {
9393
T float64 `json:"t"`
9494
})(nil),
9595
input: `{"T":10.0}`,
96+
}, unmarshalCase{
97+
ptr: (*struct {
98+
KeyString string `json:"key_string"`
99+
Type string `json:"type"`
100+
Asks [][2]float64 `json:"asks"`
101+
})(nil),
102+
input: `{"key_string": "KEYSTRING","type": "TYPE","asks": [[1e+66,1]]}`,
96103
})
97104
marshalCases = append(marshalCases,
98105
struct {

0 commit comments

Comments
 (0)