##// END OF EJS Templates
revlog: subclass the new `repository.iverifyproblem` Protocol class...
revlog: subclass the new `repository.iverifyproblem` Protocol class This is the same transformation as 3a90a6fd710d did for dirstate, but the CamelCase naming was already cleaned up here. We shouldn't have to explicitly subclass, but I'm doing so to test the interplay of regular attributes and the `attrs` class. Also, PyCharm has a nifty feature that puts a jump point in the gutter to navigate back and forth between the base class and subclasses (and override functions and base class functions) when there's an explicit subclassing. Additionally, PyCharm will immediately flag signature mismatches without a 40m pytype run.

File last commit:

r48168:26127236 default
r53365:4ef6dbc2 default
Show More
test-convert-bzr-114.t
39 lines | 909 B | text/troff | Tads3Lexer
/ tests / test-convert-bzr-114.t
Raphaël Gomès
convert-bazaar: use breezy package instead of old bzr one...
r48168 #require bzr
Matt Mackall
tests: unify test-convert-bzr-114
r12513
$ . "$TESTDIR/bzr-definitions"
The file/directory replacement can only be reproduced on
bzr >= 1.4. Merge it back in test-convert-bzr-directories once
this version becomes mainstream.
replace file with dir
$ mkdir test-replace-file-with-dir
$ cd test-replace-file-with-dir
Raphaël Gomès
convert-bazaar: use breezy package instead of old bzr one...
r48168 $ brz init -q source
Matt Mackall
tests: unify test-convert-bzr-114
r12513 $ cd source
$ echo d > d
Raphaël Gomès
convert-bazaar: use breezy package instead of old bzr one...
r48168 $ brz add -q d
$ brz commit -q -m 'add d file'
Matt Mackall
tests: unify test-convert-bzr-114
r12513 $ rm d
$ mkdir d
Raphaël Gomès
convert-bazaar: use breezy package instead of old bzr one...
r48168 $ brz add -q d
$ brz commit -q -m 'replace with d dir'
Matt Mackall
tests: unify test-convert-bzr-114
r12513 $ echo a > d/a
Raphaël Gomès
convert-bazaar: use breezy package instead of old bzr one...
r48168 $ brz add -q d/a
$ brz commit -q -m 'add d/a'
Matt Mackall
tests: unify test-convert-bzr-114
r12513 $ cd ..
$ hg convert source source-hg
initializing destination source-hg repository
scanning source...
sorting...
converting...
2 add d file
1 replace with d dir
0 add d/a
$ manifest source-hg tip
% manifest of tip
644 d/a
$ cd source-hg
$ hg update
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cd ../..