2021-09-23 01:10:25 +00:00
|
|
|
package v2_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-01-18 08:19:20 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state"
|
2022-02-11 06:48:29 +00:00
|
|
|
testtmpl "github.com/prysmaticlabs/prysm/beacon-chain/state/testing"
|
2022-02-08 09:30:06 +00:00
|
|
|
v2 "github.com/prysmaticlabs/prysm/beacon-chain/state/v2"
|
2021-09-23 01:10:25 +00:00
|
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestBeaconState_ValidatorAtIndexReadOnly_HandlesNilSlice(t *testing.T) {
|
2022-03-15 18:32:09 +00:00
|
|
|
testtmpl.VerifyBeaconStateValidatorAtIndexReadOnlyHandlesNilSlice(t, func() (state.BeaconState, error) {
|
2022-02-11 06:48:29 +00:00
|
|
|
return v2.InitializeFromProtoUnsafe(ðpb.BeaconStateAltair{
|
|
|
|
Validators: nil,
|
|
|
|
})
|
2021-09-23 01:10:25 +00:00
|
|
|
})
|
|
|
|
}
|