tests/test-paths.t
author Brodie Rao <brodie@bitheap.org>
Fri, 24 Sep 2010 15:50:57 -0500
changeset 12409 0eaf7d32a5d8
parent 12376 97ffc68f71d3
child 12587 e3247ceaca5e
permissions -rw-r--r--
test-ssh: test absolute paths in SSH URLs

  $ hg init a
  $ hg clone a b
  updating to branch default
  0 files updated, 0 files merged, 0 files removed, 0 files unresolved
  $ cd a
  $ echo '[paths]' >> .hg/hgrc
  $ echo 'dupe = ../b' >> .hg/hgrc
  $ hg in dupe
  comparing with */test-paths.t/b (glob)
  no changes found
  [1]
  $ cd ..
  $ hg -R a in dupe
  comparing with */test-paths.t/b (glob)
  no changes found
  [1]