added stubs for more tests
This commit is contained in:
parent
7d33520b2c
commit
a9dc46c950
1 changed files with 8 additions and 1 deletions
|
@ -49,7 +49,8 @@ impl Db {
|
|||
&self,
|
||||
worktree_roots: &[Arc<Path>],
|
||||
) -> SerializedWorkspace {
|
||||
// Find the workspace id which is uniquely identified by this set of paths return it if found
|
||||
// Find the workspace id which is uniquely identified by this set of paths
|
||||
// return it if found
|
||||
let mut workspace_id = self.workspace_id(worktree_roots);
|
||||
if workspace_id.is_none() && worktree_roots.len() == 0 {
|
||||
workspace_id = self.last_workspace_id();
|
||||
|
@ -388,6 +389,12 @@ mod tests {
|
|||
|
||||
use super::WorkspaceId;
|
||||
|
||||
#[test]
|
||||
fn test_empty_worktrees() {
|
||||
// TODO determine update_worktree_roots(), workspace_id(), recent_workspaces()
|
||||
// semantics for this case
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_more_workspace_ids() {
|
||||
let data = &[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue