This commit is contained in:
Alvaro Parker 2025-08-08 19:32:11 -04:00
parent 4bee06e507
commit 231a348e69
No known key found for this signature in database
6 changed files with 106 additions and 1 deletions

View file

@ -320,6 +320,10 @@ impl GitRepository for FakeGitRepository {
})
}
fn stash_entries(&self) -> BoxFuture<'_, Result<git::stash::GitStash>> {
unimplemented!()
}
fn branches(&self) -> BoxFuture<'_, Result<Vec<Branch>>> {
self.with_state_async(false, move |state| {
let current_branch = &state.current_branch_name;