mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
5b83dffbe4
* Starting * Removing feature flag * Minor touchups service.go * Conflict * Started fixing test * Init fork choice store for tests
26 lines
580 B
Go
26 lines
580 B
Go
package blockchain
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
testDB "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
|
)
|
|
|
|
func TestVerifyCheckpointEpoch_Ok(t *testing.T) {
|
|
db := testDB.SetupDB(t)
|
|
defer testDB.TeardownDB(t, db)
|
|
|
|
chainService := setupBeaconChain(t, db)
|
|
chainService.genesisTime = time.Now()
|
|
|
|
if !chainService.verifyCheckpointEpoch(ðpb.Checkpoint{}) {
|
|
t.Error("Wanted true, got false")
|
|
}
|
|
|
|
if chainService.verifyCheckpointEpoch(ðpb.Checkpoint{Epoch: 1}) {
|
|
t.Error("Wanted false, got true")
|
|
}
|
|
}
|