sapling/eden/scm/tests/test-empty-t.py
CodemodService Bot cb6754e1d8 Daily arc lint --take BLACK
Reviewed By: zertosh

Differential Revision: D29058106

fbshipit-source-id: e114f36939ad24a41e1211258824184552b7655e
2021-06-11 04:13:52 -07:00

81 lines
1.6 KiB
Python

# Copyright (c) Facebook, Inc. and its affiliates.
# Copyright (c) Mercurial Contributors.
#
# 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 % "setconfig 'extensions.treemanifest=!'"
# Create an empty repo:
sh % "hg init a"
sh % "cd a"
# Try some commands:
sh % "hg log"
sh % "hg histgrep wah" == "[1]"
sh % "hg manifest"
sh % "hg verify" == "warning: verify does not actually check anything in this repo"
# Check the basic files created:
sh % "ls .hg" == r"""
00changelog.i
blackbox
hgrc.dynamic
requires
store
treestate"""
# Should be empty:
# It's not really empty, though.
sh % "ls .hg/store" == r"""
allheads
metalog
requires"""
# Poke at a clone:
sh % "cd .."
sh % "hg clone a b" == r"""
updating to branch default
0 files updated, 0 files merged, 0 files removed, 0 files unresolved"""
sh % "cd b"
sh % "hg verify" == "warning: verify does not actually check anything in this repo"
sh % "ls .hg" == r"""
00changelog.i
blackbox
dirstate
hgrc
hgrc.dynamic
requires
store
treestate
undo.branch
undo.desc
undo.dirstate"""
# Should be empty:
# It's not really empty, though.
sh % "ls .hg/store" == r"""
00changelog.d
00changelog.i
00changelog.len
allheads
metalog
requires
undo
undo.backupfiles
undo.bookmarks
undo.phaseroots
undo.visibleheads"""
sh % "cd .."