diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-05-24 21:29:37 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-05-28 07:59:56 -0700 |
commit | b082b4f94ff1a82ce42223f7a46c9423e99c48e9 (patch) | |
tree | cb9ae38f81fa3377998c4e143b5405e71126ca36 /contrib/remote-helpers | |
parent | 0067ecc82b2dbef64d3768484eb6a1b4ca2c27d2 (diff) | |
download | git-b082b4f94ff1a82ce42223f7a46c9423e99c48e9.tar.gz git-b082b4f94ff1a82ce42223f7a46c9423e99c48e9.tar.xz |
remote-hg: add check_bookmark() test helper
And check in a more proper way.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/remote-helpers')
-rwxr-xr-x | contrib/remote-helpers/test-hg.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/contrib/remote-helpers/test-hg.sh b/contrib/remote-helpers/test-hg.sh index d244e236f..4e5664010 100755 --- a/contrib/remote-helpers/test-hg.sh +++ b/contrib/remote-helpers/test-hg.sh @@ -32,6 +32,12 @@ check_branch () { test_cmp expected actual } +check_bookmark () { + echo $3 > expected && + hg -R $1 log -r "bookmark('$2')" --template '{desc}\n' > actual && + test_cmp expected actual +} + setup () { ( echo "[ui]" @@ -108,7 +114,7 @@ test_expect_success 'update bookmark' ' git push --quiet ) && - hg -R hgrepo bookmarks | egrep "devel[ ]+3:" + check_bookmark hgrepo devel devel ' # cleanup previous stuff |