summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: d717a369bb86146b5652d3e50e5584d80007f93d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Process Subplot input files.
//!
//! Capture and communicate acceptance criteria for software and systems,
//! and how they are verified, in a way that's understood by all project
//! stakeholders.

#![deny(missing_docs)]
mod error;
pub use error::Result;
pub use error::SubplotError;

mod graphmarkup;
pub use graphmarkup::{DotMarkup, GraphMarkup, PlantumlMarkup};

mod ast;
pub use ast::get_basedir_from;
pub use ast::Document;

mod scenarios;
pub use scenarios::Scenario;

mod steps;
pub use steps::{ScenarioStep, StepKind};

mod bindings;
pub use bindings::Binding;
pub use bindings::Bindings;

mod parser;
pub use parser::parse_scenario_snippet;

mod matches;
pub use matches::MatchedScenario;
pub use matches::MatchedStep;
pub use matches::PartialStep;
pub use matches::StepSnippet;

mod templatespec;
pub use templatespec::TemplateSpec;

mod codegen;
pub use codegen::{generate_test_program, template_spec};