rspec 1.0.0

Write Rspec-like tests with stable rust
Documentation
1
2
3
4
5
6
7
8
9
//! Headers store the label and name of a Suite/Context/Example.

pub mod context;
pub mod example;
pub mod suite;

pub use header::context::*;
pub use header::example::*;
pub use header::suite::*;