pub fn should_skip_as_git_version_is_smaller_than(
    major: u8,
    minor: u8,
    patch: u8
) -> bool
Expand description

Returns true if the given major, minor and patch is smaller than the actual git version on the system to facilitate skipping a test on the caller. Will never return true on CI which is expected to have a recent enough git version.

Panics

If git cannot be executed or if its version output cannot be parsed.