aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/tests/test_repro_mst.rs
blob: 4dde3646262b7e610ae0cd4e15b63e1a9997fc7f (plain)
1
2
3
4
5
6
7
8
9
10

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();
}