partial refactor to separate taskdb and storage

This commit is contained in:
Dustin J. Mitchell 2020-01-05 13:17:07 -05:00
parent 727db7f669
commit e228c99b83
8 changed files with 208 additions and 78 deletions

View file

@ -73,6 +73,6 @@ proptest! {
if let Some(o) = o1p {
db2.apply(o).map_err(|e| TestCaseError::Fail(format!("Applying to db2: {}", e).into()))?;
}
assert_eq!(db1.tasks(), db2.tasks());
assert_eq!(db1.sorted_tasks(), db2.sorted_tasks());
}
}