add epoch processing new tests

This commit is contained in:
realbigsean
2024-05-12 06:53:52 -04:00
parent 8d4a921612
commit 89ef043491
2 changed files with 49 additions and 0 deletions

View File

@@ -664,6 +664,18 @@ fn epoch_processing_eth1_data_reset() {
EpochProcessingHandler::<MainnetEthSpec, Eth1DataReset>::default().run();
}
#[test]
fn epoch_processing_pending_balance_deposits() {
EpochProcessingHandler::<MinimalEthSpec, PendingBalanceDeposits>::default().run();
EpochProcessingHandler::<MainnetEthSpec, PendingBalanceDeposits>::default().run();
}
#[test]
fn epoch_processing_pending_consolidations() {
EpochProcessingHandler::<MinimalEthSpec, PendingConsolidations>::default().run();
EpochProcessingHandler::<MainnetEthSpec, PendingConsolidations>::default().run();
}
#[test]
fn epoch_processing_effective_balance_updates() {
EpochProcessingHandler::<MinimalEthSpec, EffectiveBalanceUpdates>::default().run();