mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
a9a4bb9163
* move testutil * util pkg * build * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
20 lines
550 B
Go
20 lines
550 B
Go
package v2
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
)
|
|
|
|
func TestBeaconState_CurrentEpochAttestations(t *testing.T) {
|
|
s := &BeaconState{}
|
|
_, err := s.CurrentEpochAttestations()
|
|
require.ErrorContains(t, "CurrentEpochAttestations is not supported for hard fork 1 beacon state", err)
|
|
}
|
|
|
|
func TestBeaconState_PreviousEpochAttestations(t *testing.T) {
|
|
s := &BeaconState{}
|
|
_, err := s.PreviousEpochAttestations()
|
|
require.ErrorContains(t, "PreviousEpochAttestations is not supported for hard fork 1 beacon state", err)
|
|
}
|