view tests/test-paths @ 11210:0c0088881562

check-code: add check for 'source'
author Yuya Nishihara <yuya@tcha.org>
date Fri, 21 May 2010 22:53:57 +0900
parents 92eb0a019bf2
children
line wrap: on
line source

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