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
4//! with specific states for testing.
5
6mod builder;
7
8pub use builder::RepoBuilder;