aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart-test-harness/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart-test-harness/src/lib.rs')
-rw-r--r--crates/mozart-test-harness/src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/mozart-test-harness/src/lib.rs b/crates/mozart-test-harness/src/lib.rs
index f8fa2b3..ea125cc 100644
--- a/crates/mozart-test-harness/src/lib.rs
+++ b/crates/mozart-test-harness/src/lib.rs
@@ -6,7 +6,11 @@
//! runner; actual `.test` fixtures and tests live elsewhere.
mod parser;
+mod pool_builder_parser;
mod runner;
pub use parser::{ParsedTest, parse_test_file, parse_test_str};
+pub use pool_builder_parser::{
+ ParsedPoolBuilderTest, parse_pool_builder_test_file, parse_pool_builder_test_str,
+};
pub use runner::{RunResult, run_test};