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