Mercurial > hg
comparison tests/test-patchbomb @ 4420:b0656b33cc02
add test for patchbomb extension.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Tue, 08 May 2007 12:20:13 -0700 |
parents | |
children | 1cf908c00479 1e11e8b6acab |
comparison
equal
deleted
inserted
replaced
4419:59ddd43f609f | 4420:b0656b33cc02 |
---|---|
1 #!/bin/sh | |
2 | |
3 echo "[extensions]" >> $HGRCPATH | |
4 echo "patchbomb=" >> $HGRCPATH | |
5 | |
6 hg init | |
7 echo a > a | |
8 hg commit -Ama -d '1 0' | |
9 | |
10 hg email --date '1970-1-1 0:1' -n -f quux -t foo -c bar tip | \ | |
11 sed -e 's/\(Message-Id:.*@\).*/\1/' | |
12 | |
13 echo b > b | |
14 hg commit -Amb -d '2 0' | |
15 | |
16 hg email --date '1970-1-1 0:2' -n -f quux -t foo -c bar -s test 0:tip | \ | |
17 sed -e 's/\(Message-Id:.*@\|In-Reply-To:.*@\).*/\1/' |