We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 136eb37 commit e029eb4Copy full SHA for e029eb4
git-discover/src/lib.rs
@@ -28,9 +28,6 @@ pub mod is_git {
28
#[error(transparent)]
29
GitFile(#[from] crate::path::from_gitdir_file::Error),
30
}
31
-
32
- /// Options for [`crate::is_git()`].
33
- pub struct Options {}
34
35
36
mod is;
git-discover/tests/upwards/mod.rs
@@ -94,7 +94,7 @@ fn from_dir_with_dot_dot() -> crate::Result {
94
working_dir.canonicalize()?,
95
"a relative path that climbs above the test repo should yield the gitoxide repo"
96
);
97
- assert_eq!(trust, git_sec::Trust::Full);
+ assert_eq!(trust, expected_trust());
98
Ok(())
99
100
0 commit comments