Add lib.rs, scaffold testing

This commit is contained in:
Juno Takano 2025-12-14 19:00:57 -03:00
commit d9a6938eb6
11 changed files with 57 additions and 14 deletions

View file

@ -124,3 +124,12 @@ pub fn deserialize_graph(in_format: &Format, serial: &str) -> Graph {
},
}
}
#[cfg(test)]
mod tests {
#[test]
fn smoke() {
let n = true;
assert!(n);
}
}