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

@@ -164,7 +164,7 @@ mod test {
db2.apply(o).unwrap();
}
assert_eq!(db1.tasks(), db2.tasks());
assert_eq!(db1.sorted_tasks(), db2.sorted_tasks());
}
#[test]