tests/test-paths
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Mon, 27 Oct 2008 21:50:16 +0100
changeset 7271 8046f0a070a6
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
use our urlopener (proxy handling, etc) instead of urllib

#!/bin/sh
hg init a
hg clone a b
cd a
echo '[paths]' >> .hg/hgrc
echo 'dupe = ../b' >> .hg/hgrc
hg in dupe | fgrep '../'
cd ..
hg -R a in dupe | fgrep '../'
true