tests/test-hgweb-removed
author Brodie Rao <me+hg@dackz.net>
Sun, 05 Jul 2009 18:52:55 -0400
changeset 9043 438f0b1d4684
parent 8452 cb93eee1fbcd
permissions -rwxr-xr-x
tests: remove more instances of export FOO=bar bashism

#!/bin/sh

echo % setting up repo
hg init test
cd test
echo a > a
hg ci -Ama
hg rm a
hg ci -mdel

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

echo % revision
"$TESTDIR/get-with-headers.py" localhost:$HGPORT '/rev/tip'

echo % diff removed file
"$TESTDIR/get-with-headers.py" localhost:$HGPORT '/diff/tip/a'