gathering info on read

master
Bel LaPointe 2024-05-23 16:11:56 -04:00
parent 7ad6dad214
commit e81f221910
1 changed files with 2 additions and 1 deletions

View File

@ -92,7 +92,8 @@ mod test_taskss {
#[test]
fn read_single_file() {
_ = DB::new("./src/testdata/taskss.d/single_file.yaml".to_string()).expect("failed to construct from single file");
let db = DB::new("./src/testdata/taskss.d/single_file.yaml".to_string()).expect("failed to construct from single file");
assert_eq!(1, db.0.len());
}
}