naru-config 0.7.0

A security-first configuration manager with encryption and audit logging
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(test)]
mod tests {
    use crate::core::error_kind::NaruError;

    #[test]
    fn test_error_re_exports() {
        let err = NaruError::config("test");
        assert_eq!(err.to_string(), "Configuration error: test");
    }
}