aboutsummaryrefslogtreecommitdiffstats
path: root/repository_test.go
diff options
context:
space:
mode:
authorPaulo Gomes <pjbgf@linux.com>2023-07-08 12:34:25 +0100
committerGitHub <noreply@github.com>2023-07-08 12:34:25 +0100
commitdc17aae6503560777a665c9cfb0d2fcb3a9a9274 (patch)
treed7235df1afd2959f3fb5e9dc122424887b620bbc /repository_test.go
parent7e143ceb36ed6d46462f3c37f07993f9a10f91e3 (diff)
parenta9a658ee4ecb0c2f0fcb1962b7c6a408a8116309 (diff)
downloadgo-git-dc17aae6503560777a665c9cfb0d2fcb3a9a9274.tar.gz
Merge pull request #808 from ricci2511/plainopen-tilde-path-fix
*: Handle paths starting with tilde
Diffstat (limited to 'repository_test.go')
-rw-r--r--repository_test.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/repository_test.go b/repository_test.go
index d18816f..50384e7 100644
--- a/repository_test.go
+++ b/repository_test.go
@@ -543,6 +543,21 @@ func (s *RepositorySuite) TestPlainOpen(c *C) {
c.Assert(r, NotNil)
}
+func (s *RepositorySuite) TestPlainOpenTildePath(c *C) {
+ dir, clean := s.TemporalHomeDir()
+ defer clean()
+
+ r, err := PlainInit(dir, false)
+ c.Assert(err, IsNil)
+ c.Assert(r, NotNil)
+
+ path := strings.Replace(dir, strings.Split(dir, ".tmp")[0], "~/", 1)
+
+ r, err = PlainOpen(path)
+ c.Assert(err, IsNil)
+ c.Assert(r, NotNil)
+}
+
func (s *RepositorySuite) TestPlainOpenBare(c *C) {
dir, clean := s.TemporalDir()
defer clean()