tests/test-issue1089.t
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Tue, 29 Jan 2013 15:25:33 +0100
branchstable
changeset 18499 d07834e52b4e
parent 16913 f2719b387380
child 26420 2fc86d92c4a9
permissions -rw-r--r--
test-obsolete: validate that bundle is not affected by issue3788 Bundle might have been affected by the same kind of error than pull (issue3788). Testing show it is not the case.

http://mercurial.selenic.com/bts/issue1089

  $ hg init
  $ mkdir a
  $ echo a > a/b
  $ hg ci -Am m
  adding a/b

  $ hg rm a
  removing a/b (glob)
  $ hg ci -m m a

  $ mkdir a b
  $ echo a > a/b
  $ hg ci -Am m
  adding a/b

  $ hg rm a
  removing a/b (glob)
  $ cd b

Relative delete:

  $ hg ci -m m ../a

  $ cd ..