ripr 0.9.0

Find static mutation-exposure gaps before expensive mutation testing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[path = "policy/parse.rs"]
mod parse;
#[path = "policy/reports.rs"]
mod reports;

#[cfg(test)]
pub(crate) use parse::{
    parse_policy_history_options, parse_policy_operations_options,
    parse_policy_preview_promotion_options, parse_policy_promotion_options,
    parse_policy_readiness_options, parse_policy_suppression_health_options,
    parse_policy_waiver_aging_options,
};
pub(super) use reports::{
    policy_history, policy_operations, policy_preview_promotion, policy_promotion,
    policy_readiness, policy_suppression_health, policy_waiver_aging,
};