(t *testing.T)
| 845 | } |
| 846 | |
| 847 | func TestAlternatesWithFS(t *testing.T) { |
| 848 | // Create a new dotgit object with a specific FS for alternates. |
| 849 | altFS := osfs.New(t.TempDir()) |
| 850 | dotFS, _ := altFS.Chroot("repo2") |
| 851 | |
| 852 | testAlternates(t, dotFS, altFS) |
| 853 | } |
| 854 | |
| 855 | func TestAlternatesWithBoundOS(t *testing.T) { |
| 856 | // Create a new dotgit object with a specific FS for alternates. |
nothing calls this directly
no test coverage detected
searching dependent graphs…