blob: ee4511cb2a2fabc40248f5e5c8aba2465601f67f (
plain) (
tree)
|
|
use crate::conf;
// This Result is used elsewhere, not in helper()
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
pub fn helper<T, V>(res: std::result::Result<T, V>, simplified_message: &str) -> T
where
V: std::fmt::Debug,
{
match res {
Ok(val) => val,
Err(err) => {
log::error!("{}", simplified_message);
if *conf::DEBUG {
log::error!("--> {:?}", err);
}
//std::process::exit(1);
panic!("{:?}", err);
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn shouldnt_panic() {
let ok: std::result::Result<&str, &str> = Ok("okay");
let rhs = helper(ok, "okay");
assert_eq!("okay", rhs);
}
}
|