diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2021-09-07 15:23:05 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2021-09-07 23:41:46 -0300 |
commit | 4ba9626f711805d99c447a862682b568ad6e1e70 (patch) | |
tree | 2f2de48c70f88d184278932820f173b5b4e1299d /src/git | |
parent | c1048a75ce98198fe9e286389b219ad0b62c8f19 (diff) |
Clean up git module
Diffstat (limited to 'src/git')
-rw-r--r-- | src/git/tests.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/git/tests.rs b/src/git/tests.rs index 16eeb93..7bdba63 100644 --- a/src/git/tests.rs +++ b/src/git/tests.rs @@ -16,15 +16,18 @@ //! Unit tests for the git module. -use super::*; - use std::panic::AssertUnwindSafe; use assert_fs::assert::PathAssert; use assert_fs::fixture::{TempDir, PathChild}; + use predicates; + use testserver::serve; +use crate::marker::Initializer; +use super::{Git, FetchRepo, CacheRepo}; + const MAGIC_BRANCH: &'static str = "gan\ 0000000000000000000000000000000000000000000000000000000000000000"; |