tests/test-paths
author Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
Tue, 30 Dec 2008 22:10:41 +0100
changeset 7554 11a4eb81fb4f
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
test-audit-path: add more tests (issue 1450)

#!/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