pub mod hooks;
pub mod inspect;
pub mod journal;
pub mod maintenance;
pub mod redact;
pub mod registry;
pub mod resolver;
pub mod snapshot;
pub mod undo;
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
#[cfg(test)]
mod tests {
#[test]
fn version_matches_cargo() {
assert_eq!(super::VERSION, env!("CARGO_PKG_VERSION"));
assert!(!super::VERSION.is_empty());
}
#[test]
fn ci_canary() {
if std::env::var_os("DOOVER_CI_CANARY").is_some() {
panic!(
"canary tripped: failure reporting verified (this is the expected outcome under DOOVER_CI_CANARY=1)"
);
}
}
}