tests/test-keyword
author Christian Ebert <blacktrash@gmx.net>
Thu, 15 Feb 2007 09:25:05 +0100
branchkwmap-templates
changeset 145 1c2cefa97b96
parent 131 23a1e1bdf62b
child 148 c0baa881d90a
permissions -rwxr-xr-x
Wrap entire commit in wlock Message-ID: <20070213102701.GC30656@cecm.usp.br>

#!/bin/sh

cat <<EOF >> $HGRCPATH
[extensions]
hgext.keyword =
[keyword]
* =
b* = ignore
EOF

echo % help
hg help keyword

hg init a
cd a
echo '$Id$' > a
echo '$Id$' > b
echo % cat
cat a b

echo % default keyword expansion
echo % commit
hg --debug commit -A -m ab -d '0 0' -u 'User Name <user@example.com>'
echo % status
hg status

echo % cat
cat a b
echo % hg cat
hg cat a b

rm a b
echo % update
hg update
echo % cat
cat a b

echo % custom keyword expansion
cat <<EOF >>$HGRCPATH
[keywordmaps]
Id = {file} {node|short} {date|rfc822date} {author|user}
Xinfo = {author}: {desc}
EOF

echo % cat
cat a b
echo % hg cat
hg cat a b

echo '$Xinfo$' >> a
cat <<EOF >> log
firstline
secondline
EOF

echo % commit
hg --debug commit -l log -d '1 0' -u 'User Name <user@example.com>'
rm log
echo % status
hg status

echo % cat
cat a b
echo % hg cat
hg cat a b

echo % switch off expansion
rm $HGRCPATH

echo % cat
cat a b
echo % hg cat
hg cat a b

echo % update
rm a b
hg update

echo % cat
cat a b