mirror of
https://github.com/json-iterator/go.git
synced 2024-11-24 08:22:14 +02:00
21 lines
466 B
Go
21 lines
466 B
Go
package test
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"github.com/json-iterator/go"
|
|
"github.com/stretchr/testify/require"
|
|
"testing"
|
|
)
|
|
|
|
// Standard Encoder has trailing newline.
|
|
func TestEncoderHasTrailingNewline(t *testing.T) {
|
|
should := require.New(t)
|
|
var buf, stdbuf bytes.Buffer
|
|
enc := jsoniter.ConfigCompatibleWithStandardLibrary.NewEncoder(&buf)
|
|
enc.Encode(1)
|
|
stdenc := json.NewEncoder(&stdbuf)
|
|
stdenc.Encode(1)
|
|
should.Equal(stdbuf.Bytes(), buf.Bytes())
|
|
}
|