diff tests/test-revset.t @ 17753:69d5078d760d

revsets: add branchpoint() function The branchpoint() function returns changesets with more than one child. Eventually I would like to be able to see only branch points and merge points in a graphical log to see the topology of the repository.
author Ivan Andrus <darthandrus@gmail.com>
date Mon, 13 Aug 2012 21:50:45 +0200
parents ee2370d866fc
children acd4577a568d
line wrap: on
line diff
--- a/tests/test-revset.t	Thu Oct 11 22:58:34 2012 -0500
+++ b/tests/test-revset.t	Mon Aug 13 21:50:45 2012 +0200
@@ -332,6 +332,9 @@
   0
   $ log 'merge()'
   6
+  $ log 'branchpoint()'
+  1
+  4
   $ log 'modifies(b)'
   4
   $ log 'modifies("path:b")'
@@ -362,6 +365,13 @@
   $ log 'parents(merge())'
   4
   5
+  $ log 'p1(branchpoint())'
+  0
+  2
+  $ log 'p2(branchpoint())'
+  $ log 'parents(branchpoint())'
+  0
+  2
   $ log 'removes(a)'
   2
   6