##// END OF EJS Templates
bookmarks: fixes bug where a deleted bookmark may still be treated as current when track.current option is set
bookmarks: fixes bug where a deleted bookmark may still be treated as current when track.current option is set

File last commit:

r7817:cb516e78 default
r7817:cb516e78 default
Show More
test-bookmarks-current
55 lines | 705 B | text/plain | TextLexer
/ tests / test-bookmarks-current
#!/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
echo % list bookmarks
hg bookmark
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
echo % delete bookmarks
hg bookmark -d Y
hg bookmark -d Z
echo % list bookmarks
hg bookmark
echo % update to tip
hg update tip