MCPcopy Index your code
hub / github.com/dgraph-io/dgraph / TestMarshalFloat

Function TestMarshalFloat

query/outputnode_test.go:298–306  ·  view source on GitHub ↗
(t *testing.T)

Source from the content-addressed store, hash-verified

296}
297
298func TestMarshalFloat(t *testing.T) {
299 var (
300 in = types.Val{Tid: types.FloatID, Value: 0.123456789012345}
301 out = "0.123456789012345"
302 )
303 result, err := valToBytes(in)
304 require.NoError(t, err)
305 require.Equal(t, out, string(result))
306}

Callers

nothing calls this directly

Calls 1

valToBytesFunction · 0.85

Tested by

no test coverage detected