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

File last commit:

r11208:2313dc4d default
r11849:95a93161 default
Show More
test-bookmarks-rebase
34 lines | 435 B | text/plain | TextLexer
/ tests / test-bookmarks-rebase
Alexander Solovyov
bookmarks: Test if rebase works with bookmarks...
r7317 #!/bin/sh
Yuya Nishihara
tests: fix bashism to load helpers.sh...
r11208 . $TESTDIR/helpers.sh
Matt Mackall
rebase: use helpers.sh in tests
r11198
Alexander Solovyov
bookmarks: Test if rebase works with bookmarks...
r7317 echo "[extensions]" >> $HGRCPATH
echo "rebase=" >> $HGRCPATH
echo "bookmarks=" >> $HGRCPATH
echo % initialize repository
hg init
echo 'a' > a
Martin Geisler
tests: removed redundant "-u test" from test scripts...
r8168 hg ci -A -m "0"
Alexander Solovyov
bookmarks: Test if rebase works with bookmarks...
r7317
echo 'b' > b
Martin Geisler
tests: removed redundant "-u test" from test scripts...
r8168 hg ci -A -m "1"
Alexander Solovyov
bookmarks: Test if rebase works with bookmarks...
r7317
hg up 0
echo 'c' > c
Martin Geisler
tests: removed redundant "-u test" from test scripts...
r8168 hg ci -A -m "2"
Alexander Solovyov
bookmarks: Test if rebase works with bookmarks...
r7317
echo 'd' > d
Martin Geisler
tests: removed redundant "-u test" from test scripts...
r8168 hg ci -A -m "3"
Alexander Solovyov
bookmarks: Test if rebase works with bookmarks...
r7317
hg bookmark -r 1 one
hg bookmark -r 3 two
echo % bookmark list
hg bookmark
echo % rebase
Matt Mackall
rebase: use helpers.sh in tests
r11198 hg rebase -s two -d one 2>&1 | cleanrebase
Alexander Solovyov
bookmarks: Test if rebase works with bookmarks...
r7317
Martin Geisler
tests: removed redundant "-d '0 0'" from test scripts...
r8167 hg log