From a7eac74d36ae209f791ef182a09b2f4da4475586 Mon Sep 17 00:00:00 2001 From: huangsimin Date: Fri, 6 Mar 2020 18:33:24 +0800 Subject: [PATCH] json to table --- edb_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/edb_test.go b/edb_test.go index 8764486..43188c9 100644 --- a/edb_test.go +++ b/edb_test.go @@ -9,6 +9,8 @@ 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)`