Begin working on bls test

This commit is contained in:
Kirk Baird
2019-05-21 10:32:14 +10:00
parent 63ee179def
commit 4f6447a62b
9 changed files with 211 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ fn yaml_files_in_test_dir(dir: &str) -> Vec<PathBuf> {
.collect()
}
/*
#[test]
fn ssz_generic() {
yaml_files_in_test_dir("ssz_generic")
@@ -43,3 +44,13 @@ fn ssz_static() {
Doc::assert_tests_pass(file);
});
}
*/
#[test]
fn bls() {
yaml_files_in_test_dir("bls")
.into_par_iter()
.for_each(|file| {
Doc::assert_tests_pass(file);
});
}