1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]

#[cfg(not(target_arch = "wasm32"))]
pub mod tests;

#[cfg(not(target_arch = "wasm32"))]
pub mod helpers;

#[cfg(not(target_arch = "wasm32"))]
pub mod contracts;

#[cfg(not(target_arch = "wasm32"))]
pub use tests::*;

#[cfg(not(target_arch = "wasm32"))]
pub mod test_tube;