view tests/test-subrepo-paths.t @ 11916:d1ea16ca6520

tests: unify test-subrepo-svn
author Martin Geisler <mg@lazybytes.net>
date Tue, 17 Aug 2010 16:53:03 +0200
parents e31e5eb8736c
children be33381882ad
line wrap: on
line source

  $ hg init outer
  $ cd outer

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

hg debugsub with no remapping

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

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

hg debugsub with remapping

  $ 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