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

18 lines
322 B
Go
Raw Normal View History

package kv
import (
"testing"
testpb "github.com/prysmaticlabs/prysm/proto/testing"
)
func Test_encode_handlesNilFromFunction(t *testing.T) {
foo := func() *testpb.Puzzle {
return nil
}
_, err := encode(foo())
if err == nil || err.Error() != "cannot encode nil message" {
t.Fatalf("Wrong error %v", err)
}
}