(t *testing.T)
| 1495 | } |
| 1496 | |
| 1497 | func TestGitRootDir(t *testing.T) { |
| 1498 | setup(t) |
| 1499 | expectedPath, _ := filepath.EvalSymlinks(tempDir + "/local") |
| 1500 | equals(t, expectedPath, filepath.FromSlash(gitRootDir())) |
| 1501 | } |
| 1502 | |
| 1503 | func TestGitRootDirWithSymbolicLink(t *testing.T) { |
| 1504 | setup(t) |
nothing calls this directly
no test coverage detected