Mercurial > hg
view tests/fakemergerecord.py @ 32298:779a1ae6d0d9
test-casefolding: sync with latest code changes
This goes with c2380b448265.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 13 May 2017 21:15:56 -0400 |
parents | b303b3817d0e |
children | 46ba2cdda476 |
line wrap: on
line source
# Extension to write out fake unsupported records into the merge state # # from __future__ import absolute_import from mercurial import ( cmdutil, merge, ) cmdtable = {} command = cmdutil.command(cmdtable) @command('fakemergerecord', [('X', 'mandatory', None, 'add a fake mandatory record'), ('x', 'advisory', None, 'add a fake advisory record')], '') def fakemergerecord(ui, repo, *pats, **opts): with repo.wlock(): ms = merge.mergestate.read(repo) records = ms._makerecords() if opts.get('mandatory'): records.append(('X', 'mandatory record')) if opts.get('advisory'): records.append(('x', 'advisory record')) ms._writerecords(records)