2021-05-28 20:32:26 +00:00
|
|
|
# beacon_chain
|
|
|
|
# Copyright (c) 2021 Status Research & Development GmbH
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
{.used.}
|
|
|
|
|
2021-10-13 14:24:36 +00:00
|
|
|
import
|
|
|
|
chronicles
|
|
|
|
|
2021-05-28 20:32:26 +00:00
|
|
|
import
|
2021-10-12 11:36:52 +00:00
|
|
|
./test_fixture_fork,
|
2021-09-29 13:02:34 +00:00
|
|
|
./test_fixture_merkle_single_proof,
|
2021-05-28 20:32:26 +00:00
|
|
|
./test_fixture_operations_attestations,
|
|
|
|
./test_fixture_operations_attester_slashings,
|
|
|
|
./test_fixture_operations_block_header,
|
2021-05-31 12:54:53 +00:00
|
|
|
./test_fixture_operations_deposits,
|
2021-05-28 20:32:26 +00:00
|
|
|
./test_fixture_operations_proposer_slashings,
|
2021-06-14 17:42:46 +00:00
|
|
|
./test_fixture_operations_sync_aggregate,
|
2021-05-31 12:54:53 +00:00
|
|
|
./test_fixture_operations_voluntary_exit,
|
2021-10-12 11:36:52 +00:00
|
|
|
./test_fixture_sanity_blocks,
|
|
|
|
./test_fixture_sanity_slots,
|
|
|
|
./test_fixture_ssz_consensus_objects,
|
|
|
|
./test_fixture_state_transition_epoch,
|
2021-09-13 16:35:13 +00:00
|
|
|
./test_fixture_sync_protocol,
|
2021-06-04 10:38:00 +00:00
|
|
|
./test_fixture_transition
|