use super::*;
#[test]
#[ignore] fn should_fetch_from_repo() {
let_assert!(Ok(cwd) = std::env::current_dir());
let gitdir = GitDir::new(cwd.join("../.."), StoragePathType::External);
let repo_details = given::repo_details(&given::a_filesystem()).with_gitdir(gitdir);
let_assert!(Ok(repo) = crate::git::repository::factory::real().open(&repo_details));
let_assert!(Ok(()) = repo.fetch());
}