tests/test-subrepo-paths.t
author Pradeepkumar Gayam <in3xes@gmail.com>
Tue, 17 Aug 2010 08:38:31 +0530
changeset 11940 106311e7740f
parent 11914 e31e5eb8736c
child 11959 be33381882ad
permissions -rw-r--r--
tests: unify test-copy2

  $ 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