rename DB to TaskDB for consistency

This commit is contained in:
Dustin J. Mitchell
2020-11-23 16:03:04 -05:00
parent 8e2b4c3f6c
commit 2296d0fa35
4 changed files with 34 additions and 34 deletions

View File

@@ -68,7 +68,7 @@ pub trait TaskStorageTxn {
fn operations<'a>(&mut self) -> Fallible<Vec<Operation>>;
/// Add an operation to the end of the list of operations in the storage. Note that this
/// merely *stores* the operation; it is up to the DB to apply it.
/// merely *stores* the operation; it is up to the TaskDB to apply it.
fn add_operation(&mut self, op: Operation) -> Fallible<()>;
/// Replace the current list of operations with a new list.

View File

@@ -128,7 +128,7 @@ impl Operation {
#[cfg(test)]
mod test {
use super::*;
use crate::taskdb::DB;
use crate::taskdb::TaskDB;
use crate::taskstorage::InMemoryStorage;
use chrono::{Duration, Utc};
use proptest::prelude::*;
@@ -148,7 +148,7 @@ mod test {
// check that the two operation sequences have the same effect, enforcing the invariant of
// the transform function.
let mut db1 = DB::new_inmemory();
let mut db1 = TaskDB::new_inmemory();
if let Some(ref o) = setup {
db1.apply(o.clone()).unwrap();
}
@@ -157,7 +157,7 @@ mod test {
db1.apply(o).unwrap();
}
let mut db2 = DB::new_inmemory();
let mut db2 = TaskDB::new_inmemory();
if let Some(ref o) = setup {
db2.apply(o.clone()).unwrap();
}
@@ -310,8 +310,8 @@ mod test {
fn transform_invariant_holds(o1 in operation_strategy(), o2 in operation_strategy()) {
let (o1p, o2p) = Operation::transform(o1.clone(), o2.clone());
let mut db1 = DB::new(Box::new(InMemoryStorage::new()));
let mut db2 = DB::new(Box::new(InMemoryStorage::new()));
let mut db1 = TaskDB::new(Box::new(InMemoryStorage::new()));
let mut db2 = TaskDB::new(Box::new(InMemoryStorage::new()));
// Ensure that any expected tasks already exist
if let Operation::Update{ ref uuid, .. } = o1 {