tests/test-mq-qnew-twice
author Thomas Arendsen Hein <thomas@intevation.de>
Fri, 21 Dec 2007 21:50:19 +0100
changeset 5685 57d29a45ffbc
parent 2990 61fcd9fac434
permissions -rwxr-xr-x
Use skipped: instead of hghave: for skipping tests, use this in test-merge-types

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