(c *C)
| 780 | } |
| 781 | |
| 782 | func (s *RepositorySuite) TestPlainOpenBareRelativeGitDirFile(c *C) { |
| 783 | s.testPlainOpenGitFile(c, func(dir, altDir string) string { |
| 784 | dir, err := filepath.Rel(altDir, dir) |
| 785 | c.Assert(err, IsNil) |
| 786 | return fmt.Sprintf("gitdir: %s\n", dir) |
| 787 | }) |
| 788 | } |
| 789 | |
| 790 | func (s *RepositorySuite) TestPlainOpenBareRelativeGitDirFileNoEOL(c *C) { |
| 791 | s.testPlainOpenGitFile(c, func(dir, altDir string) string { |
nothing calls this directly
no test coverage detected