mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 22:47:26 +03:00
e0e01cbc81
Summary: This broke a bunch of tests. Revert it and re-enable all the tests. Reviewed By: DurhamG Differential Revision: D19665042 fbshipit-source-id: c3c17e3ac7e2ea028be5b5836bc8349cdf56184e
38 lines
1017 B
Python
38 lines
1017 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 0:2dcb9139ea49
|
|
* b 0:2dcb9139ea49"""
|
|
sh % "hg bookmark --track a"
|
|
sh % "hg bookmark -v" == r"""
|
|
a 0:2dcb9139ea49
|
|
* b 0:2dcb9139ea49 [a]"""
|
|
sh % "hg bookmark --untrack"
|
|
sh % "hg bookmark -v" == r"""
|
|
a 0:2dcb9139ea49
|
|
* b 0:2dcb9139ea49"""
|