ef_tests: runners for epoch processing tests

This commit is contained in:
Michael Sproul
2019-05-28 16:03:26 +10:00
parent 01039546cb
commit 706f850c9e
5 changed files with 118 additions and 0 deletions

View File

@@ -129,3 +129,21 @@ fn bls() {
Doc::assert_tests_pass(file);
});
}
#[test]
fn epoch_processing_crosslinks() {
yaml_files_in_test_dir(&Path::new("epoch_processing").join("crosslinks"))
.into_par_iter()
.for_each(|file| {
Doc::assert_tests_pass(file);
});
}
#[test]
fn epoch_processing_registry_updates() {
yaml_files_in_test_dir(&Path::new("epoch_processing").join("registry_updates"))
.into_par_iter()
.for_each(|file| {
Doc::assert_tests_pass(file);
});
}