tests/test-diff-unified
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Tue, 22 Jul 2008 18:21:37 +0200
changeset 6924 e8332c8108ff
parent 6467 65029a3aafc2
child 7436 07faba78cf5a
permissions -rwxr-xr-x
hgweb: generate error message only if nothing is passed

#!/bin/sh

hg init repo
cd repo
cat > a <<EOF
c
c
a
a
b
a
a
c
c
EOF
hg ci -Am adda
cat > a <<EOF
c
c
a
a
dd
a
a
c
c
EOF

echo '% default context'
hg diff --nodates

echo '% invalid --unified'
hg diff --nodates -U foo

echo '% --unified=2'
hg diff --nodates -U 2

echo '% diff.unified=2'
hg --config diff.unified=2 diff --nodates

echo '% diff.unified=2 --unified=1'
hg diff --nodates -U 1

echo '% invalid diff.unified'
hg --config diff.unified=foo diff --nodates

exit 0