mirror of
https://github.com/json-iterator/go.git
synced 2024-11-24 08:22:14 +02:00
22 lines
512 B
Go
22 lines
512 B
Go
package jsoniter
|
|
|
|
import (
|
|
"testing"
|
|
"github.com/json-iterator/go/require"
|
|
)
|
|
|
|
func Test_missing_object_end(t *testing.T) {
|
|
should := require.New(t)
|
|
type TestObject struct {
|
|
Metric string `json:"metric"`
|
|
Tags map[string]interface{} `json:"tags"`
|
|
}
|
|
obj := TestObject{}
|
|
should.NotNil(UnmarshalFromString(`{"metric": "sys.777","tags": {"a":"123"}`, &obj))
|
|
}
|
|
|
|
func Test_missing_array_end(t *testing.T) {
|
|
should := require.New(t)
|
|
should.NotNil(UnmarshalFromString(`[1,2,3`, &[]int{}))
|
|
}
|