dao_testing/
lib.rs

1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
2
3#[cfg(not(target_arch = "wasm32"))]
4pub mod tests;
5
6#[cfg(not(target_arch = "wasm32"))]
7pub mod helpers;
8
9#[cfg(not(target_arch = "wasm32"))]
10pub mod contracts;
11
12#[cfg(not(target_arch = "wasm32"))]
13pub use tests::*;
14
15#[cfg(not(target_arch = "wasm32"))]
16pub mod test_tube;