diff -r a7d1532b26a1 -r 519bb4f9d3a4 tests/test-hgcia.t --- a/tests/test-hgcia.t Sat Jul 02 09:41:40 2016 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,94 +0,0 @@ -Test the CIA extension - - $ cat >> $HGRCPATH < [extensions] - > hgcia= - > - > [hooks] - > changegroup.cia = python:hgext.hgcia.hook - > - > [web] - > baseurl = http://hgserver/ - > - > [cia] - > user = testuser - > project = testproject - > test = True - > EOF - - $ hg init src - $ hg init cia - $ cd src - $ echo foo > foo - $ hg ci -Amfoo - adding foo - $ hg push ../cia - pushing to ../cia - searching for changes - adding changesets - adding manifests - adding file changes - added 1 changesets with 1 changes to 1 files - - - - Mercurial (hgcia) - 0.1 - http://hg.kublai.com/mercurial/hgcia - testuser - - - testproject - default - - - - test - 0:e63c23eaa88a - foo - http://hgserver/rev/e63c23eaa88a - foo - - - 0 - - - $ cat >> $HGRCPATH < strip = 0 - > EOF - - $ echo bar > bar - $ hg ci -Ambar - adding bar - $ hg push ../cia - pushing to ../cia - searching for changes - adding changesets - adding manifests - adding file changes - added 1 changesets with 1 changes to 1 files - - - - Mercurial (hgcia) - 0.1 - http://hg.kublai.com/mercurial/hgcia - testuser - - - testproject - default - - - - test - 1:c0c7cf58edc5 - bar - http://hgserver/$TESTTMP/cia/rev/c0c7cf58edc5 - bar - - - 0 - - - $ cd ..