Skip to content
Snippets Groups Projects
Commit 0c33f04d authored by Georges Racinet's avatar Georges Racinet
Browse files

testhelpers: split out a hg module

For better symmetry with upcoming Git helpers.

We're maintaining compatibility by re-exposing at the package
level.
parent c8c21f9b
No related branches found
No related tags found
1 merge request!48Integration tests overhaul
......@@ -4,6 +4,6 @@
# GNU General Public License version 2 or any later version.
#
# SPDX-License-Identifier: GPL-2.0-or-later
"""Compatibility layer for externalisation of testhelpers."""
"""Specific and not-yet externalized test helpers."""
from mercurial_testhelpers.repo_wrapper import ( # noqa: F401
......@@ -8,6 +8,5 @@
from mercurial_testhelpers.repo_wrapper import ( # noqa: F401
RepoWrapper as CoreRepoWrapper,
as_bytes,
make_ui,
)
......@@ -11,32 +10,7 @@
as_bytes,
make_ui,
)
class RepoWrapper(CoreRepoWrapper):
write_commit = CoreRepoWrapper.commit_file
commit_remove = CoreRepoWrapper.commit_removal
def prune(self, revs, successors=(), bookmarks=()):
# the prune command expects to get all these arguments (it relies
# on the CLI defaults but doesn't have any at the function call level).
# They are unconditionally concatened to lists, hence must be lists.
# (as of Mercurial 5.3.1)
if isinstance(revs, (bytes, str)):
revs = [revs]
return self.command('prune',
rev=[as_bytes(r) for r in revs],
new=[], # deprecated yet expected
# TODO py3 convert these two to bytes as needed:
successor=list(successors),
bookmark=list(bookmarks))
def set_topic(self, topic):
self.command('topics', as_bytes(topic))
RepoWrapper.register_commit_option('topic', 'set_topic')
from .hg import RepoWrapper
# compatibility alias
LocalRepoWrapper = RepoWrapper
......@@ -6,6 +6,6 @@
# SPDX-License-Identifier: GPL-2.0-or-later
"""Compatibility layer for externalisation of testhelpers."""
from mercurial_testhelpers.repo_wrapper import ( # noqa: F401
from mercurial_testhelpers.repo_wrapper import (
RepoWrapper as CoreRepoWrapper,
as_bytes,
......@@ -10,6 +10,5 @@
RepoWrapper as CoreRepoWrapper,
as_bytes,
make_ui,
)
......
......@@ -10,8 +10,8 @@
)
import pytest
from .. import RepoWrapper
from .. import LocalRepoWrapper # see test_compat_alis
from ..hg import RepoWrapper
from ..hg import LocalRepoWrapper # see test_compat_alis
parametrize = pytest.mark.parametrize
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment