tests/test-bookmarks.t
branchstable
changeset 17868 04755508f8ed
parent 17850 71c1513fd560
child 17870 7d2dd10ce9ea
--- a/tests/test-bookmarks.t	Fri Oct 26 12:36:15 2012 +0200
+++ b/tests/test-bookmarks.t	Fri Oct 26 13:09:55 2012 +0200
@@ -394,6 +394,22 @@
   $ hg bookmark -d @
   $ hg bookmark -d a@
 
+test clone with a bookmark named "default" (issue3677)
+
+  $ hg bookmark -r 1 -f -i default
+  $ hg clone . cloned-bookmark-default
+  updating to branch default
+  2 files updated, 0 files merged, 0 files removed, 0 files unresolved
+  $ hg -R cloned-bookmark-default bookmarks
+     X2                        1:925d80f479bb
+     Y                         2:db815d6d32e6
+     Z                         2:db815d6d32e6
+     default                   1:925d80f479bb
+     x  y                      2:db815d6d32e6
+  $ hg -R cloned-bookmark-default parents -q
+  2:db815d6d32e6
+  $ hg bookmark -d default
+
 test clone with a specific revision
 
   $ hg clone -r 925d80 . cloned-bookmarks-rev