##// END OF EJS Templates
tests: fixup tests using unzip -l
tests: fixup tests using unzip -l

File last commit:

r12316:4134686b default
r12339:f85338f5 default
Show More
test-nested-repo.t
40 lines | 493 B | text/troff | Tads3Lexer
/ tests / test-nested-repo.t
Adrian Buehlmann
combine tests
r12279 $ hg init a
$ cd a
$ hg init b
$ echo x > b/x
Should print nothing:
$ hg add b
$ hg st
Should fail:
$ hg st b/x
abort: path 'b/x' is inside repo 'b'
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
combine tests
r12279 $ hg add b/x
abort: path 'b/x' is inside repo 'b'
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
combine tests
r12279
Should fail:
$ hg add b b/x
abort: path 'b/x' is inside repo 'b'
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
combine tests
r12279 $ hg st
Should arguably print nothing:
$ hg st b
$ echo a > a
$ hg ci -Ama a
Should fail:
$ hg mv a b
abort: path 'b/a' is inside repo 'b'
Matt Mackall
tests: add exit codes to unified tests
r12316 [255]
Adrian Buehlmann
combine tests
r12279 $ hg st