aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/tests/test_repro_mst.rs
blob: 9a23c03c64f3faab9786e69a32346cfe01befb06 (plain)
1
2
3
4
5
6
7
8
9
use adenosine_pds::mst::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();
}