prysm-pulse/beacon-chain/db/kv/encoding_test.go

18 lines
371 B
Go
Raw Normal View History

package kv
import (
"context"
"testing"
testpb "github.com/prysmaticlabs/prysm/v3/proto/testing"
"github.com/prysmaticlabs/prysm/v3/testing/require"
)
func Test_encode_handlesNilFromFunction(t *testing.T) {
foo := func() *testpb.Puzzle {
return nil
}
_, err := encode(context.Background(), foo())
require.ErrorContains(t, "cannot encode nil message", err)
}