sapling/eden/scm/tests/test-remotenames-journal.t
Durham Goode 4f8c30b04e py3: enable 92 py3 tests
Summary: These now pass

Reviewed By: singhsrb

Differential Revision: D19785175

fbshipit-source-id: bf92757e3fe0753e1b61ffddfd30a37fb40a642f
2020-02-17 14:52:37 -08:00

60 lines
1.4 KiB
Perl

#chg-compatible
$ disable treemanifest
Tests for the journal extension integration with remotenames.
Skip if journal is not available in mercurial
$ hg help -e journal &>/dev/null || exit 80
$ enable journal remotenames
$ setconfig remotenames.rename.default=remote
$ hg init remote
$ cd remote
$ touch a
$ hg commit -A -m 'a commit' -q
$ hg book bmwillnotmove
$ hg book bm
Test journal with remote bookmarks works on clone
$ cd ..
$ hg clone remote local -q
$ cd local
$ hg journal remote/bm
previous locations of 'remote/bm':
94cf1ae9e2c8 clone remote local -q
Test journal with remote bookmarks works on pull
$ cd ../remote
$ hg up bm -q
$ echo 'modified' > a
$ hg commit -m 'a second commit' -q
$ cd ../local
$ hg pull -q
$ hg journal remote/bm
previous locations of 'remote/bm':
b720e98e7160 pull -q
94cf1ae9e2c8 clone remote local -q
Test journal with remote bookmarks works after push
$ hg up remote/bm -q
$ echo 'modified locally' > a
$ hg commit -m 'local commit' -q
$ hg push --to bm -q
$ hg journal remote/bm
previous locations of 'remote/bm':
869ef7e9b417 push --to bm -q
b720e98e7160 pull -q
94cf1ae9e2c8 clone remote local -q
Test second remotebookmark has not been clobbered or has moved since clone
$ hg journal remote/bmwillnotmove
previous locations of 'remote/bmwillnotmove':
94cf1ae9e2c8 clone remote local -q