summaryrefslogtreecommitdiff
path: root/clone_test.go
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2015-06-30 19:08:29 +0200
committerCarlos Martín Nieto <[email protected]>2015-06-30 19:08:29 +0200
commitb6811196e4f7728b25ab37ce2a0862aa74c22253 (patch)
tree9760d516785beb8345f500634d7d64667c5ed395 /clone_test.go
parent66d266f97185020fe80f4b573411c39fc354fc91 (diff)
Clone: test we clone something usable and fix constructor
Clone was still trying to do its own initialisation, which was missing all of the namespacing changes.
Diffstat (limited to 'clone_test.go')
-rw-r--r--clone_test.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/clone_test.go b/clone_test.go
index fd83fec..7cdc362 100644
--- a/clone_test.go
+++ b/clone_test.go
@@ -15,8 +15,18 @@ func TestClone(t *testing.T) {
path, err := ioutil.TempDir("", "git2go")
checkFatal(t, err)
+ ref, err := repo.References.Lookup("refs/heads/master")
+ checkFatal(t, err)
+
repo2, err := Clone(repo.Path(), path, &CloneOptions{Bare: true})
defer cleanupTestRepo(t, repo2)
checkFatal(t, err)
+
+ ref2, err := repo2.References.Lookup("refs/heads/master")
+ checkFatal(t, err)
+
+ if ref.Cmp(ref2) != 0 {
+ t.Fatal("reference in clone does not match original ref")
+ }
}