test-tube 0.1.2

library for building integration testing environments for cosmos-sdk chains in Rust
Documentation
1
2
3
4
5
6
7
8
use crate::runner::Runner;

#[macro_use]
pub mod macros;

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