tests/test-issue1089.t
author Yuya Nishihara <yuya@tcha.org>
Sat, 28 Jun 2014 13:13:32 +0900
changeset 30264 dd3dd80fca10
parent 26420 2fc86d92c4a9
child 35393 4441705b7111
permissions -rw-r--r--
hgweb: make log streams compatible with command server Even though it would be useless to start a web server by a command server, it should be doable in principle. Also, we can't use sys.stdout/err directly on Python 3 because they are unicode streams.

https://bz.mercurial-scm.org/1089

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