##// END OF EJS Templates
tests: unify test-bookmarks
tests: unify test-bookmarks

File last commit:

r11561:e5aaaef9 stable
r11861:41d481dd default
Show More
test-bookmarks-current
64 lines | 911 B | text/plain | TextLexer
/ tests / test-bookmarks-current
David Soria Parra
bookmarks: tests for track.current option
r7551 #!/bin/sh
echo "[extensions]" >> $HGRCPATH
echo "bookmarks=" >> $HGRCPATH
echo "[bookmarks]" >> $HGRCPATH
echo "track.current = True" >> $HGRCPATH
hg init
echo % no bookmarks
hg bookmarks
echo % set bookmark X
hg bookmark X
David Soria Parra
bookmarks: Set current bookmark if we create a new one on the tip...
r7816 echo % list bookmarks
hg bookmark
Brodie Rao
color: colorize based on output labels instead of parsing output...
r10826 echo % list bookmarks with color
Patrick Mezard
tests: force color ansi mode on Windows
r11141 hg --config extensions.color= --config color.mode=ansi \
bookmark --color=always
Brodie Rao
color: colorize based on output labels instead of parsing output...
r10826
David Soria Parra
bookmarks: tests for track.current option
r7551 echo % update to bookmark X
hg update X
echo % list bookmarks
hg bookmarks
echo % rename
hg bookmark -m X Z
echo % list bookmarks
hg bookmarks
echo % new bookmark Y
hg bookmark Y
echo % list bookmarks
hg bookmark
echo % commit
echo 'b' > b
hg add b
hg commit -m'test'
echo % list bookmarks
hg bookmark
Alex Unden
bookmarks: fixes bug where a deleted bookmark may still be treated as current when track.current option is set
r7817
echo % delete bookmarks
hg bookmark -d Y
hg bookmark -d Z
echo % list bookmarks
hg bookmark
echo % update to tip
hg update tip
Brodie Rao
bookmarks: ensure current bookmark is updated when specified with -r ....
r11561 echo % set bookmark Y using -r .
hg bookmark -r . Y
echo % list bookmarks
hg bookmark