tests/test-revset-outgoing.t
changeset 22837 2be7d5ebd4d0
parent 22380 82b2ba904e3e
child 23057 f41dd17ae6b7
--- a/tests/test-revset-outgoing.t	Wed Oct 08 07:45:51 2014 -0400
+++ b/tests/test-revset-outgoing.t	Mon Oct 06 16:35:02 2014 -0400
@@ -36,16 +36,20 @@
 
   $ cd b
   $ cat .hg/hgrc
-  # You may want to set your username here if it is not set
-  # globally, or this repository requires a different
-  # username from your usual configuration. If you want to
-  # set something for all of your repositories on this
-  # computer, try running the command
-  # 'hg config --edit --global'
-  # [ui]
+  # example repository config (see "hg help config" for more info)
+  [paths]
+  default = $TESTTMP/a#stable
+  
+  # path aliases to other clones of this repo in URLs or filesystem paths
+  # (see "hg help config.paths" for more info)
+  #
+  # default-push = ssh://jdoe@example.net/hg/jdoes-fork
+  # my-fork      = ssh://jdoe@example.net/hg/jdoes-fork
+  # my-clone     = /home/jdoe/jdoes-clone
+  
+  [ui]
+  # name and email (local to this repository, optional), e.g.
   # username = Jane Doe <jdoe@example.com>
-  [paths]
-  default = $TESTTMP/a#stable (glob)
 
   $ echo red >> a
   $ hg ci -qm3
@@ -84,24 +88,29 @@
   $ echo "green = ../a#default" >> .hg/hgrc
 
   $ cat .hg/hgrc
-  # You may want to set your username here if it is not set
-  # globally, or this repository requires a different
-  # username from your usual configuration. If you want to
-  # set something for all of your repositories on this
-  # computer, try running the command
-  # 'hg config --edit --global'
-  # [ui]
+  # example repository config (see "hg help config" for more info)
+  [paths]
+  default = $TESTTMP/a#stable
+  
+  # path aliases to other clones of this repo in URLs or filesystem paths
+  # (see "hg help config.paths" for more info)
+  #
+  # default-push = ssh://jdoe@example.net/hg/jdoes-fork
+  # my-fork      = ssh://jdoe@example.net/hg/jdoes-fork
+  # my-clone     = /home/jdoe/jdoes-clone
+  
+  [ui]
+  # name and email (local to this repository, optional), e.g.
   # username = Jane Doe <jdoe@example.com>
-  [paths]
-  default = $TESTTMP/a#stable (glob)
   green = ../a#default
 
   $ hg tout green
-  comparing with $TESTTMP/a (glob)
-  searching for changes
-  3:f0461977a3db: '4' 
+  comparing with green
+  abort: repository green not found!
+  [255]
 
   $ hg tlog -r 'outgoing("green")'
-  3:f0461977a3db: '4' 
+  abort: repository green not found!
+  [255]
 
   $ cd ..