Mercurial > hg
comparison tests/test-issue1089.t @ 12195:ee41be2bbf5a
tests: unify test-issue*
author | Adrian Buehlmann <adrian@cadifra.com> |
---|---|
date | Fri, 03 Sep 2010 23:34:37 +0200 |
parents | tests/test-issue1089@2268edff1bec |
children | b63f6422d2a7 |
comparison
equal
deleted
inserted
replaced
12194:9e40ea08c2ab | 12195:ee41be2bbf5a |
---|---|
1 # http://mercurial.selenic.com/bts/issue1089 | |
2 | |
3 $ hg init | |
4 $ mkdir a | |
5 $ echo a > a/b | |
6 $ hg ci -Am m | |
7 adding a/b | |
8 | |
9 $ hg rm a | |
10 removing a/b | |
11 $ hg ci -m m a | |
12 | |
13 $ mkdir a b | |
14 $ echo a > a/b | |
15 $ hg ci -Am m | |
16 adding a/b | |
17 | |
18 $ hg rm a | |
19 removing a/b | |
20 $ cd b | |
21 | |
22 Relative delete: | |
23 | |
24 $ hg ci -m m ../a | |
25 |