abscissa_core 0.9.0

Application microframework with support for command-line option parsing, configuration, error handling, logging, and terminal interactions. This crate contains the framework's core functionality.
Documentation
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 [`CmdRunner`].

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

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