##// END OF EJS Templates
mq: do not call [0] on revset...
mq: do not call [0] on revset The __getitem__ method have been removed. The "first" method is to be used instead. Test have been extended to test this code path.

File last commit:

r18807:cf72fd8b default
r23128:b6f7cf47 stable
Show More
test-hgk.t
20 lines | 315 B | text/troff | Tads3Lexer
Minimal hgk check
$ echo "[extensions]" >> $HGRCPATH
$ echo "hgk=" >> $HGRCPATH
$ hg init repo
$ cd repo
$ echo a > a
$ hg ci -Am adda
adding a
$ hg debug-cat-file commit 0
tree a0c8bcbbb45c
parent 000000000000
author test 0 0
revision 0
branch default
phase draft
adda
$ cd ..