aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/json/encode_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/encoding/json/encode_test.go')
-rw-r--r--src/encoding/json/encode_test.go15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/encoding/json/encode_test.go b/src/encoding/json/encode_test.go
index 13e765afa3..507581feed 100644
--- a/src/encoding/json/encode_test.go
+++ b/src/encoding/json/encode_test.go
@@ -440,7 +440,9 @@ func TestIssue6458(t *testing.T) {
t.Fatal(err)
}
- if want := `{"M":"ImZvbyI="}`; string(b) != want {
+ // Until Go 1.8, this generated `{"M":"ImZvbyI="}`.
+ // See https://github.com/golang/go/issues/14493#issuecomment-255857318
+ if want := `{"M":"foo"}`; string(b) != want {
t.Errorf("Marshal(x) = %#q; want %#q", b, want)
}
}
@@ -717,3 +719,14 @@ func TestMarshalFloat(t *testing.T) {
test(0, 32)
test(math.Copysign(0, -1), 32)
}
+
+func TestMarshalRawMessageValue(t *testing.T) {
+ const val = "\"some value\""
+ b, err := Marshal(RawMessage(val))
+ if err != nil {
+ t.Fatal(err)
+ }
+ if string(b) != val {
+ t.Errorf("got %q; want %q", b, val)
+ }
+}