summaryrefslogtreecommitdiff
path: root/compat/json/compat_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'compat/json/compat_test.go')
-rw-r--r--compat/json/compat_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/compat/json/compat_test.go b/compat/json/compat_test.go
index 2380c53..43f17f1 100644
--- a/compat/json/compat_test.go
+++ b/compat/json/compat_test.go
@@ -72,6 +72,7 @@ func TestCompatCompact(t *testing.T) {
Err string
}
testcases := map[string]testcase{
+ "empty": {In: ``, Out: ``, Err: `unexpected end of JSON input`},
"trunc": {In: `{`, Out: ``, Err: `unexpected end of JSON input`},
"object": {In: `{}`, Out: `{}`},
"non-utf8": {In: "\"\x85\xcd\"", Out: "\"\x85\xcd\""},
@@ -106,6 +107,7 @@ func TestCompatIndent(t *testing.T) {
Err string
}
testcases := map[string]testcase{
+ "empty": {In: ``, Out: ``, Err: `unexpected end of JSON input`},
"trunc": {In: `{`, Out: ``, Err: `unexpected end of JSON input`},
"object": {In: `{}`, Out: `{}`},
"non-utf8": {In: "\"\x85\xcd\"", Out: "\"\x85\xcd\""},