mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
f3d6dbcc1e
* config params into pkg * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
33 lines
605 B
Go
33 lines
605 B
Go
package genesis_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state/genesis"
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
)
|
|
|
|
func TestGenesisState(t *testing.T) {
|
|
tests := []struct {
|
|
name params.ConfigName
|
|
}{
|
|
{
|
|
name: params.Mainnet,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(params.ConfigNames[tt.name], func(t *testing.T) {
|
|
st, err := genesis.State(params.ConfigNames[tt.name])
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if st == nil {
|
|
t.Fatal("nil state")
|
|
}
|
|
if st.NumValidators() <= 0 {
|
|
t.Error("No validators present in state")
|
|
}
|
|
})
|
|
}
|
|
}
|