2020-03-06 10:04:32 +00:00
|
|
|
package gjson
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMethodCase(t *testing.T) {
|
|
|
|
content := `{"name":{"first":"int ","last":"Prichard"}, "age":(47)}`
|
|
|
|
r := Parse(content)
|
|
|
|
|
2020-03-06 10:33:24 +00:00
|
|
|
t.Error(r.Get("age"))
|
|
|
|
|
2020-03-06 10:04:32 +00:00
|
|
|
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))
|
|
|
|
|
|
|
|
}
|