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

Missing test module

parent e6e912d4
No related branches found
No related tags found
No related merge requests found
Pipeline #
from __future__ import absolute_import
from heptapod.testhelpers import LocalRepoWrapper
import hgext3rd.heptapod
HGEXT_HEPTA_SOURCE = hgext3rd.heptapod.__file__.replace('.pyc', '.py')
def test_initial_import_settings(tmpdir):
wrapper = LocalRepoWrapper.init(
tmpdir.join('repo'),
config=dict(
heptapod={'initial-import': 'yes'},
extensions=dict(heptapod=HGEXT_HEPTA_SOURCE,
topic='',
evolve='',
)
))
ui = wrapper.repo.ui
assert not ui.configbool('experimental', 'single-head-per-branch')
assert not ui.configbool('experimental', 'topic.publish-bare-branch')
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