sapling/eden/scm/tests/test-unicode-inputs-t.py
Jun Wu d1bc8e37f9 tests: remove helpers-usechg.t
Summary:
`chg` is now integrated as `#chg-compatible` by the test framework. The helper
script no longer works.

Reviewed By: markbt

Differential Revision: D21895009

fbshipit-source-id: 257ed081fbd1a6acc97afbfa2934134e389ab400
2020-06-10 19:29:37 -07:00

31 lines
631 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
import os
from testutil.autofix import eq
from testutil.dott import feature, sh, testtmp # noqa: F401
sh % "setmodernconfig"
sh % "hg init repo"
sh % "cd repo"
sh % "echo xxx" > "file"
sh % "hg add file"
sh % "hg commit -m 'Æ'"
sh % "hg log -v" == """
changeset: 0:4bb70d3b3100
user: test
date: Thu Jan 01 00:00:00 1970 +0000
files: file
description:
Æ
"""