comparison tests/test-hgweb-empty @ 7565:5f162f61e479

hgweb: fix problems with empty repositories
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Sun, 04 Jan 2009 19:10:42 +0100
parents
children
comparison
equal deleted inserted replaced
7564:f1af59451c0c 7565:5f162f61e479
1 #!/bin/sh
2 # Some tests for hgweb in an empty repository
3
4 hg init test
5 cd test
6 hg serve -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log
7 cat hg.pid >> $DAEMON_PIDS
8
9 ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/shortlog')
10 ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/log')
11 ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/graph')
12 ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/file')