tests/test-notify-changegroup
changeset 12474 f213af8211cc
parent 12473 52aac5c5c2a6
child 12475 c2b7bee11410
--- a/tests/test-notify-changegroup	Sun Sep 26 13:44:42 2010 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-cat <<EOF >> $HGRCPATH
-[extensions]
-notify=
-
-[hooks]
-changegroup.notify = python:hgext.notify.hook
-
-[notify]
-sources = push
-diffstat = False
-maxsubject = 10
-
-[usersubs]
-foo@bar = *
-
-[reposubs]
-* = baz
-EOF
-
-hg init a
-
-echo % clone
-hg --traceback clone a b
-
-echo a > b/a
-echo % commit
-hg --traceback --cwd b commit -Ama
-
-echo a >> b/a
-echo % commit
-hg --traceback --cwd b commit -Amb
-
-echo % push
-hg --traceback --cwd b push ../a 2>&1 |
-    python -c 'import sys,re; print re.sub("\n\t", " ", sys.stdin.read()),' |
-    sed -e 's/\(Message-Id:\).*/\1/' \
-        -e 's/changeset \([0-9a-f]* *\)in .*test-notif/changeset \1in test-notif/' \
-        -e 's/^Subject: .*/Subject: test-notify-changegroup/' \
-        -e 's/^details: .*test-notify/details: test-notify/' \
-        -e 's/^Date:.*/Date:/'
-