tests/test-issue1089.t
author Lucas Moscovicz <lmoscovicz@fb.com>
Wed, 12 Feb 2014 10:22:43 -0800
changeset 20483 ed57358398af
parent 16913 f2719b387380
child 26420 2fc86d92c4a9
permissions -rw-r--r--
revset: added basic operations to spanset Added methods __add__, __sub__ and __and__ to duck type more methods in baseset

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 ..