gjson/edb_test.go
2020-03-06 18:33:24 +08:00

27 lines
420 B
Go

package gjson
import (
"fmt"
"testing"
)
func TestMethodCase(t *testing.T) {
content := `{"name":{"first":"int ","last":"Prichard"}, "age":(47)}`
r := Parse(content)
t.Error(r.Get("age"))
t.Error(fmt.Sprintf("%#v", r))
content = `(12+23)`
r = Parse(content)
t.Error(fmt.Sprintf("%#v", r))
content = `[(12+2), 213, {"name": "das", "key": (23+4)}]`
r = Parse(content)
t.Error(fmt.Sprintf("%#v", r))
}