Document JSON marshaling issue with escaped characters in MarshalJSON and update tests to prevent improper marshaling.

This commit is contained in:
2025-08-23 02:08:30 +01:00
parent 7d20a51508
commit ddb4c486cb
2 changed files with 7 additions and 1 deletions

View File

@@ -78,10 +78,11 @@ func TestExamplesCache(t *testing.T) {
c = c[:0]
c = append(c, b...)
ev := New()
if err = ev.UnmarshalJSON(b); chk.E(err) {
if err = json.Unmarshal(b, ev); chk.E(err) {
t.Fatal(err)
}
var b2 []byte
// can't use json.Marshal as it improperly escapes <, > and &.
if b2, err = ev.MarshalJSON(); err != nil {
t.Fatal(err)
}