blob: ad5fba1ec9a1e587679f9621e8a1c8852a90f30f (
plain)
1
2
3
4
5
6
7
8
9
|
use adenosine_pds::repro_mst;
use std::path::PathBuf;
use std::str::FromStr;
#[test]
fn test_repro_mst() {
repro_mst(&PathBuf::from_str("./tests/example_repo.car").unwrap()).unwrap();
repro_mst(&PathBuf::from_str("./tests/bigger.car").unwrap()).unwrap();
}
|