# HG changeset patch # User Bryan O'Sullivan # Date 1185482076 25200 # Node ID cb100605a51613fa54248e6455efc7bb1cb03c48 # Parent 914054ca532eaeed3eb5744319d5af726b17f6d8 convert: add test diff -r 914054ca532e -r cb100605a516 tests/test-convert --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-convert Thu Jul 26 13:34:36 2007 -0700 @@ -0,0 +1,21 @@ +#!/bin/sh + +echo "[extensions]" >> $HGRCPATH +echo "convert=" >> $HGRCPATH + +hg init a +cd a +echo a > a +hg ci -d'0 0' -Ama +hg cp a b +hg ci -d'1 0' -mb +hg rm a +hg ci -d'2 0' -mc +hg mv b a +hg ci -d'3 0' -md +echo a >> a +hg ci -d'4 0' -me + +cd .. +hg convert a +hg --cwd a-hg pull ../a diff -r 914054ca532e -r cb100605a516 tests/test-convert.out --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-convert.out Thu Jul 26 13:34:36 2007 -0700 @@ -0,0 +1,14 @@ +adding a +assuming destination a-hg +initializing destination a-hg repository +scanning source... +sorting... +converting... +4 a +3 b +2 c +1 d +0 e +pulling from ../a +searching for changes +no changes found