(t *testing.T)
| 1501 | } |
| 1502 | |
| 1503 | func TestGitRootDirWithSymbolicLink(t *testing.T) { |
| 1504 | setup(t) |
| 1505 | symlinkDir := tempDir + "/local-symlink" |
| 1506 | setWorkingDir(symlinkDir) |
| 1507 | expectedLocalSymlinkPath, _ := filepath.EvalSymlinks(symlinkDir) |
| 1508 | equals(t, expectedLocalSymlinkPath, filepath.FromSlash(gitRootDir())) |
| 1509 | } |
| 1510 | |
| 1511 | func TestBothCreateNonemptyCommitWithNext(t *testing.T) { |
| 1512 | _, configuration := setup(t) |
nothing calls this directly
no test coverage detected