sapling/eden/scm/tests/test-absorb-phase-t.py
Jun Wu 9bf6b674a6 config: use Rust graph render as default
Summary: Change the legacy Python graph render to Rust renderer.

Reviewed By: DurhamG

Differential Revision: D24317802

fbshipit-source-id: 4c3dc3a6dd02b7ebe79596a8e77f4b6b139d2e20
2020-10-19 17:07:30 -07:00

41 lines
659 B
Python

# coding=utf-8
# 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]
absorb=
""" >> "$HGRCPATH"
sh % "hg init repo"
sh % "cd repo"
sh % "hg debugdrawdag" << r"""
C
|
B
|
A
"""
sh % "hg debugmakepublic -r A"
sh % "hg update C -q"
sh % "printf B1" > "B"
sh % "hg absorb -aq"
sh % "hg log -G -T '{desc} {phase}'" == r"""
@ C draft
o B draft
o A public"""