add no salshed proposer test

This commit is contained in:
Danny Ryan 2019-03-19 15:00:29 -06:00
parent 2afbd8a02d
commit ad636a8252
No known key found for this signature in database
GPG Key ID: 2765A792E42CE07A
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
from copy import deepcopy
import pytest
from build.phase0.spec import (
get_beacon_proposer_index,
process_block_header,
)
from tests.phase0.helpers import (
build_empty_block_for_next_slot,
)
# mark entire file as 'sanity' and 'header'
pytestmark = [pytest.mark.sanity, pytest.mark.header]
def test_proposer_slashed(state):
pre_state = deepcopy(state)
block = build_empty_block_for_next_slot(pre_state)
proposer_index = get_beacon_proposer_index(pre_state, block.slot)
pre_state.validator_registry[proposer_index].slashed = True
with pytest.raises(AssertionError):
process_block_header(pre_state, block)
return state, [block], None