tests/test-issue1089.t
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 08 Nov 2023 22:27:32 +0100
changeset 51141 c845479fc64d
parent 49621 55c6ebd11cb9
permissions -rw-r--r--
cleanup: drop the `bytes` compatibility for attribute related function We can rely on the builtins directly now.

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

  $ hg init repo
  $ cd repo
  $ mkdir a
  $ echo a > a/b
  $ hg ci -Am m
  adding a/b

  $ hg rm a
  removing a/b
  $ 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
  $ cd b

Relative delete:

  $ hg ci -m m ../a

  $ cd ..