test-tube 0.7.0

library for building integration testing environments for cosmos-sdk chains in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::runner::Runner;

pub mod bank;
pub mod wasm;

#[cfg(feature = "bank")]
pub use bank::Bank;

#[cfg(feature = "wasm")]
pub use wasm::Wasm;

#[macro_use]
pub mod macros;

pub trait Module<'a, R: Runner<'a>> {
    fn new(runner: &'a R) -> Self;
}