1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Acceptance testing for Abscissa applications.
//!
//! The recommended way to import types for testing is:
//!
//! ```
//! use abscissa_core::testing::prelude::*;
//! ```
//!
//! The main entrypoint for running tests is [abscissa_core::testing::CmdRunner].

mod config;
pub mod prelude;
pub mod process;
mod regex;
mod runner;

pub use self::{regex::Regex, runner::CmdRunner};