##// END OF EJS Templates
hgweb: add bookmarks listing to raw style with test case
hgweb: add bookmarks listing to raw style with test case

File last commit:

r12316:4134686b default
r13921:4788923a default
Show More
test-cat.t
23 lines | 338 B | text/troff | Tads3Lexer
$ hg init
$ echo 0 > a
$ echo 0 > b
$ hg ci -A -m m
adding a
adding b
$ hg rm a
$ hg cat a
0
$ hg cat --decode a # more tests in test-encode
0
$ echo 1 > b
$ hg ci -m m
$ echo 2 > b
$ hg cat -r 0 a
0
$ hg cat -r 0 b
0
$ hg cat -r 1 a
a: no such file in rev 7040230c159c
[1]
$ hg cat -r 1 b
1