()
| 26 | // ── Shared Helpers ────────────────────────────────────────────────────── |
| 27 | |
| 28 | pub(super) fn create_temp_repo() -> (TempDir, Repository) { |
| 29 | let temp_dir = TempDir::new().unwrap(); |
| 30 | let repo = Repository::init(temp_dir.path()).unwrap(); |
| 31 | (temp_dir, repo) |
| 32 | } |
| 33 | |
| 34 | /// Create a simple test change with the given message. |
| 35 | pub(super) fn create_test_change(message: &str) -> Change { |
no test coverage detected