tests/test-parents
author Patrick Mezard <pmezard@gmail.com>
Wed, 20 Jun 2007 00:10:21 +0200
changeset 4639 c7371aa0c153
parent 4586 1fcc076fcb17
child 4894 be5dc5e3ab2d
permissions -rwxr-xr-x
test-annotate: add a test for issue 589.

#!/bin/sh
# test parents command

hg init a
cd a
echo % no working directory
hg parents

echo a > a
echo b > b
hg ci -Amab -d '0 0'
echo a >> a
hg ci -Ama -d '1 0'
echo b >> b
hg ci -Amb -d '2 0'

echo % hg parents
hg parents

echo % hg parents a
hg parents a

echo % hg parents -r 2
hg parents -r 2

echo % hg parents -r 2 a
hg parents -r 2 a