tests/test-highlight
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Wed, 17 Sep 2008 11:14:06 +0200
changeset 7038 d1c82127573e
parent 6355 3b841c189ab7
child 7040 f29b674cc221
permissions -rwxr-xr-x
tests: fix test-highlight for compatiblity with newer Pygments

#!/bin/sh

"$TESTDIR/hghave" pygments || exit 80

cat <<EOF >> $HGRCPATH
[extensions]
hgext.highlight =
EOF

hg init test
cd test
cp $TESTDIR/get-with-headers.py ./
hg ci -Ama

echo % hg serve
hg serve -p $HGPORT -d -n test --pid-file=hg.pid -A access.log -E errors.log
cat hg.pid >> $DAEMON_PIDS

echo % hgweb filerevision
("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/file/tip/get-with-headers.py') \
    | sed "s/[0-9]* years ago/long ago/g" | sed "s/class=\"k\"/class=\"kn\"/g"

echo % hgweb fileannotate
("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/annotate/tip/get-with-headers.py') \
    | sed "s/[0-9]* years ago/long ago/g" | sed "s/class=\"k\"/class=\"kn\"/g"

echo % errors encountered
cat errors.log