sapling/eden/scm/tests/test-fb-hgext-tweakdefaults-bookmarks-t.py
Xavier Deguillard e0e01cbc81 bundle2: backout D19656773
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
2020-01-31 10:48:19 -08:00

36 lines
940 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
# Set up
sh % "cat" << r"""
[experimental]
evolution=all
[extensions]
amend=
tweakdefaults=
""" >> "$HGRCPATH"
# Test hg bookmark works with hidden commits
sh % "hg init repo1"
sh % "cd repo1"
sh % "touch a"
sh % "hg commit -A a -m a"
sh % "echo 1" >> "a"
sh % "hg commit a -m a1"
sh % "hg prune da7a5140a611 -q" == r"""
hint[strip-hide]: 'hg strip' may be deprecated in the future - use 'hg hide' instead
hint[hint-ack]: use 'hg hint --ack strip-hide' to silence these hints"""
sh % "hg bookmark b -r da7a5140a611 -q"
# Same test but with remotenames enabled
sh % "hg bookmark b2 -r da7a5140a611 -q --config 'extensions.remotenames='"