mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
f575a81afd
* beacon-chain/core/blocks/spectest tests updated * beacon-chain/core/blocks tests updated * Merge refs/heads/master into apply-testutils-assertions-to-core-blocks * Merge refs/heads/master into apply-testutils-assertions-to-core-blocks * Merge refs/heads/master into apply-testutils-assertions-to-core-blocks
17 lines
482 B
Go
17 lines
482 B
Go
package blocks_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/blocks"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
)
|
|
|
|
func TestGenesisBlock_InitializedCorrectly(t *testing.T) {
|
|
stateHash := []byte{0}
|
|
b1 := blocks.NewGenesisBlock(stateHash)
|
|
|
|
assert.NotNil(t, b1.Block.ParentRoot, "Genesis block missing ParentHash field")
|
|
assert.DeepEqual(t, b1.Block.StateRoot, stateHash, "Genesis block StateRootHash32 isn't initialized correctly")
|
|
}
|