tests/test-paths.t
author Erik Zielke <ez@aragost.com>
Thu, 30 Sep 2010 09:49:40 +0200
changeset 12587 e3247ceaca5e
parent 12376 97ffc68f71d3
child 12640 6cc4b14fb76b
permissions -rw-r--r--
tests: removed test names in tests The name of the test files is replaced with a glob * expression, thereby the tests does not depend on the filename of the file they are in.

  $ 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 */b (glob)
  no changes found
  [1]
  $ cd ..
  $ hg -R a in dupe
  comparing with */b (glob)
  no changes found
  [1]