tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Tue, 22 Aug 2006 10:08:42 +0200
changeset 2976 61fcd9fac434
parent 2713 85070b784896
permissions -rwxr-xr-x
Make tests append settings to $HGRCPATH instead of $HGTMP/.hgrc and add documentation for this.

#!/bin/sh

echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH

hg init a
cd a
hg qnew first.patch
hg qnew first.patch

touch ../first.patch
hg qimport ../first.patch

exit 0