1
2
3
4
5
6
7
8
//! A mockstream that implements std::io::Read, std::io::Write, tokio_io::AsyncRead and tokio_io::AsyncWrite.
#![deny(missing_docs, warnings, missing_debug_implementations)]
extern crate futures;
extern crate tokio_io;

pub mod mockstream;

pub use mockstream::MockStream;