hydro_test/lib.rs
1stageleft::stageleft_no_entry_crate!();
2
3pub mod cluster;
4pub mod distributed;
5
6#[doc(hidden)]
7#[cfg(doctest)]
8mod docs {
9 include_mdtests::include_mdtests!("docs/docs/hydro/**/*.md*");
10}
11
12#[cfg(test)]
13mod test_init {
14 #[ctor::ctor]
15 fn init() {
16 hydro_lang::deploy::init_test();
17 }
18}