fakemergerecord.py
26 lines
| 752 B
| text/x-python
|
PythonLexer
/ tests / fakemergerecord.py
Siddharth Agarwal
|
r27027 | # Extension to write out fake unsupported records into the merge state | ||
# | ||||
# | ||||
from __future__ import absolute_import | ||||
from mercurial import ( | ||||
merge, | ||||
Yuya Nishihara
|
r32337 | registrar, | ||
Siddharth Agarwal
|
r27027 | ) | ||
cmdtable = {} | ||||
Yuya Nishihara
|
r32337 | command = registrar.command(cmdtable) | ||
Siddharth Agarwal
|
r27027 | |||
Augie Fackler
|
r36191 | @command(b'fakemergerecord', | ||
[(b'X', b'mandatory', None, b'add a fake mandatory record'), | ||||
(b'x', b'advisory', None, b'add a fake advisory record')], '') | ||||
Siddharth Agarwal
|
r27027 | def fakemergerecord(ui, repo, *pats, **opts): | ||
Pierre-Yves David
|
r29754 | with repo.wlock(): | ||
ms = merge.mergestate.read(repo) | ||||
records = ms._makerecords() | ||||
Pulkit Goyal
|
r36498 | if opts.get('mandatory'): | ||
Augie Fackler
|
r36191 | records.append((b'X', b'mandatory record')) | ||
Pulkit Goyal
|
r36498 | if opts.get('advisory'): | ||
Augie Fackler
|
r36191 | records.append((b'x', b'advisory record')) | ||
Pierre-Yves David
|
r29754 | ms._writerecords(records) | ||