comparison tests/test-hgcia.t @ 12429:01c6be8361df

tests: unify test-hgcia
author Matt Mackall <mpm@selenic.com>
date Sun, 26 Sep 2010 13:41:32 -0500
parents tests/test-hgcia@b80b944836ec
children c322890b03e6
comparison
equal deleted inserted replaced
12428:3aa7b6445aad 12429:01c6be8361df
1 Test the CIA extension
2
3 $ cat >> $HGRCPATH <<EOF
4 > [extensions]
5 > hgcia=
6 >
7 > [hooks]
8 > changegroup.cia = python:hgext.hgcia.hook
9 >
10 > [cia]
11 > user = testuser
12 > project = testproject
13 > test = True
14 > EOF
15
16 $ hg init src
17 $ hg init cia
18 $ cd src
19 $ echo foo > foo
20 $ hg ci -Amfoo
21 adding foo
22 $ hg push ../cia
23 pushing to ../cia
24 searching for changes
25 adding changesets
26 adding manifests
27 adding file changes
28 added 1 changesets with 1 changes to 1 files
29
30 <message>
31 <generator>
32 <name>Mercurial (hgcia)</name>
33 <version>0.1</version>
34 <url>http://hg.kublai.com/mercurial/hgcia</url>
35 <user>testuser</user>
36 </generator>
37 <source>
38 <project>testproject</project>
39 <branch>default</branch>
40 </source>
41 <body>
42 <commit>
43 <author>test</author>
44 <version>0:e63c23eaa88a</version>
45 <log>foo</log>
46
47 <files><file action="add">foo</file></files>
48 </commit>
49 </body>
50 <timestamp>0</timestamp>
51 </message>