Refactor validation tests into integration tests

This commit is contained in:
Paul Hauner
2018-10-01 16:37:34 +09:30
parent 4d1f730c95
commit 8f5285875b
15 changed files with 496 additions and 138 deletions

12
tests/main.rs Normal file
View File

@@ -0,0 +1,12 @@
extern crate lighthouse;
extern crate ssz;
#[cfg(test)]
mod attestation_validation;
#[cfg(test)]
mod block_validation;
use lighthouse::bls;
use lighthouse::db;
use lighthouse::state;
use lighthouse::utils;