blob: 6284f4f291520a12a70442b10f29dda662ff35e1 [file] [log] [blame]
#[cfg(test)]
mod tests {
#[test]
fn it_works() -> Result<(), String> {
if 2 + 2 == 4 {
Ok(())
} else {
Err(String::from("two plus two does not equal four"))
}
}
}