tests/test-issue1089.t
author Mads Kiilerich <mads@kiilerich.com>
Wed, 08 Aug 2012 18:10:30 +0200
changeset 17346 2944a6d35158
parent 16913 f2719b387380
child 26420 2fc86d92c4a9
permissions -rw-r--r--
check-code: fix check for trailing whitespace on empty lines It seems like the intention with c7d23b4ca4ba was to catch lines with only one whitespace too.

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