tests/test-issue1089.t
author Augie Fackler <augie@google.com>
Wed, 15 Feb 2017 17:48:03 -0500
changeset 31014 3ed6e43998df
parent 26420 2fc86d92c4a9
child 35400 4441705b7111
permissions -rw-r--r--
ui: introduce neverpager() call I'm about to add direct paging support to some commands, and as a result we need a way to communicate from the higher layers of dispatch that paging is explicitly disabled.

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