sapling/eden/scm/tests/test-remotenames-bookmarks-t.py
Jun Wu 140456fc29 bookmarks: remove revnum from non-plain bookmark output
Summary:
Remove revnum from `hg bookmarks` output.
`HGPLAIN=1` output is not changed for compatibility.

Reviewed By: singhsrb

Differential Revision: D24191788

fbshipit-source-id: 3a873b7baba8f1dfe7b3ec690688313ca1134032
2020-10-08 22:33:07 -07:00

38 lines
993 B
Python

# Copyright (c) Facebook, Inc. and its affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from __future__ import absolute_import
from testutil.dott import feature, sh, testtmp # noqa: F401
sh % "cat" << r"""
[extensions]
remotenames=
""" >> "$HGRCPATH"
# Setup repo
sh % "hg init repo"
sh % "cd repo"
sh % "echo foo" > "a.txt"
sh % "hg add a.txt"
sh % "hg commit -m a"
# Testing bookmark options without args
sh % "hg bookmark a"
sh % "hg bookmark b"
sh % "hg bookmark -v" == r"""
a 2dcb9139ea49
* b 2dcb9139ea49"""
sh % "hg bookmark --track a"
sh % "hg bookmark -v" == r"""
a 2dcb9139ea49
* b 2dcb9139ea49 [a]"""
sh % "hg bookmark --untrack"
sh % "hg bookmark -v" == r"""
a 2dcb9139ea49
* b 2dcb9139ea49"""