Add parsing (not executing) of deposit tests

This commit is contained in:
Paul Hauner
2019-05-22 15:34:12 +10:00
parent 07b94b30ba
commit 95b0df7087
6 changed files with 65 additions and 13 deletions

View File

@@ -1,6 +1,4 @@
use super::*;
use crate::yaml_decode::*;
use yaml_rust::YamlLoader;
mod bls_aggregate_pubkeys;
mod bls_aggregate_sigs;
@@ -8,6 +6,7 @@ mod bls_g2_compressed;
mod bls_g2_uncompressed;
mod bls_priv_to_pub;
mod bls_sign_msg;
mod operations_deposit;
mod ssz_generic;
mod ssz_static;
@@ -17,6 +16,7 @@ pub use bls_g2_compressed::*;
pub use bls_g2_uncompressed::*;
pub use bls_priv_to_pub::*;
pub use bls_sign_msg::*;
pub use operations_deposit::*;
pub use ssz_generic::*;
pub use ssz_static::*;