$ "$TESTDIR/hghave" serve || exit 80 setting up repo $ hg init test $ cd test $ echo a > a $ hg ci -Ama adding a $ hg rm a $ hg ci -mdel 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 revision $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT 'rev/tip' 200 Script output follows test: c78f6c5cbea9

changeset 1:c78f6c5cbea9 tip

del
author test
date Thu, 01 Jan 1970 00:00:00 +0000
parents cb9a9f314b8b
children
files a
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
  --- a/a	Thu Jan 01 00:00:00 1970 +0000
  +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
  @@ -1,1 +0,0 @@
  -a
diff removed file $ "$TESTDIR/get-with-headers.py" localhost:$HGPORT 'diff/tip/a' 200 Script output follows test: a diff

diff a @ 1:c78f6c5cbea9

del
author test
date Thu, 01 Jan 1970 00:00:00 +0000
parents cb9a9f314b8b
children
line wrap: on
line diff
  --- a/a	Thu Jan 01 00:00:00 1970 +0000
  +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
  @@ -1,1 +0,0 @@
  -a
$ cd ..