cucumber-reporter 0.2.2

html reporter for cucumber-rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Html reporter for cucumber
//! ## examples 
//! ```gherkin
#![doc = include_str!("../features/simple-feature.feature")]
//! ```
//! Will produce the following output
//! 
//! ![simple]("../assets/simple.png")
//! ```gherkin
#![doc = include_str!("../features/feature-with-rules.feature")]
//! ```
//! ```gherkin
#![doc = include_str!("../features/feature-with-outline.feature")]
//! ```

mod render_types;
mod reporter;
pub use reporter::CucumberReporter;