view tests/test-paths @ 6633:67a2d2d9bf21

test-convert-mtn: test descriptions with quotes
author Patrick Mezard <pmezard@gmail.com>
date Mon, 02 Jun 2008 21:38:52 +0200
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