sapling/eden/scm/tests/test-disable-bad-features-t.py
Durham Goode 9778811573 tags: remove tags feature
Summary:
We no longer user tags in any of our repositories, so let's delete all
the code and remove some tech debt.

Previously drawdag was our last remaining use of tags, but in a previous diff I
switched that to use bookmarks.

Reviewed By: quark-zju

Differential Revision: D19042226

fbshipit-source-id: d7871c71c1026599aa70fdd806418347ea214a8a
2020-01-07 12:31:10 -08:00

44 lines
1.4 KiB
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
# Test various flags to turn off bad hg features.
sh % "newrepo"
sh % "drawdag" << r"""
A
"""
sh % "hg up -Cq $A"
# Test disabling the `hg merge` command:
sh % "hg merge" == r"""
abort: nothing to merge
[255]"""
sh % "setconfig 'ui.allowmerge=False'"
sh % "hg merge" == r"""
abort: merging is not supported for this repository
(use rebase instead)
[255]"""
# Test disabling the `hg branch` commands:
sh % "hg branch" == r"""
default
hint[branch-command-deprecate]: 'hg branch' command does not do what you want, and is being removed. It always prints 'default' for now. Check fburl.com/why-no-named-branches for details.
hint[hint-ack]: use 'hg hint --ack branch-command-deprecate' to silence these hints"""
sh % "setconfig 'ui.allowbranches=False'"
sh % "hg branch foo" == r"""
abort: named branches are disabled in this repository
(use bookmarks instead)
[255]"""
sh % "setconfig 'ui.disallowedbrancheshint=use bookmarks instead! see docs'"
sh % "hg branch -C" == r"""
abort: named branches are disabled in this repository
(use bookmarks instead! see docs)
[255]"""