mirror of
https://github.com/json-iterator/go.git
synced 2024-11-24 08:22:14 +02:00
14 lines
239 B
Go
14 lines
239 B
Go
package jsoniter
|
|
|
|
import (
|
|
"testing"
|
|
"github.com/json-iterator/go/require"
|
|
)
|
|
|
|
func Test_read_bool_as_any(t *testing.T) {
|
|
should := require.New(t)
|
|
any, err := UnmarshalAnyFromString("true")
|
|
should.Nil(err)
|
|
should.True(any.ToBool())
|
|
}
|