tests/test-issue1089.t
author Elifarley Callado Coelho Cruz
Fri, 01 Jun 2012 11:15:00 -0300
changeset 16945 989f1e4f74c6
parent 16913 f2719b387380
child 26420 2fc86d92c4a9
permissions -rw-r--r--
tests: removed unneeded section in acl configuration: 'extensions' Declaring 'acl' in the [extensions] section doesn't change anything.

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