tests/test-subrepo-paths.t
author Martin Geisler <mg@lazybytes.net>
Wed, 18 Aug 2010 11:59:35 +0200
changeset 11959 be33381882ad
parent 11914 e31e5eb8736c
child 11961 f3075ffa6b30
permissions -rw-r--r--
test-subrepo-paths: moved comment lines to where they belong

  $ hg init outer
  $ cd outer

hg debugsub with no remapping

  $ echo 'sub = http://example.net/libfoo' > .hgsub
  $ hg add .hgsub

  $ hg debugsub
  path sub
   source   http://example.net/libfoo
   revision 

hg debugsub with remapping

  $ cat > .hg/hgrc <<EOF
  > [subpaths]
  > http://example.net = ssh://localhost
  > EOF

  $ hg debugsub
  path sub
   source   ssh://localhost/libfoo
   revision 

test bad subpaths pattern

  $ cat > .hg/hgrc <<EOF
  > [subpaths]
  > .* = \1
  > EOF
  $ hg debugsub
  abort: bad subrepository pattern in .*/test-subrepo-paths.t/outer/.hg/hgrc:2: invalid group reference

  $ exit 0