Skip to main content

rskit_git/testutil/
mod.rs

1//! Test utilities for the git module.
2//!
3//! Provides a [`RepoBuilder`] for creating temporary git repositories with specific states for testing.
4
5mod builder;
6
7pub use builder::RepoBuilder;