##// END OF EJS Templates
test-archive: gracefully handle HTTPErrors on get-with-headers...
test-archive: gracefully handle HTTPErrors on get-with-headers This avoids pritting out a traceback when a get-with-headers call causes hgweb to respond with an HTTPError code.

File last commit:

r16913:f2719b38 default
r18770:dcb6a99e default
Show More
test-issue1089.t
26 lines | 321 B | text/troff | Tads3Lexer
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 ..