Mercurial > hg
comparison tests/test-filelog.py @ 30559:d83ca854fa21
ui: factor out ui.load() to create a ui without loading configs (API)
This allows us to write doctests depending on a ui object, but not on global
configs.
ui.load() is a class method so we can do wsgiui.load(). All ui() calls but
for doctests are replaced with ui.load(). Some of them could be changed to
not load configs later.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sat, 22 Oct 2016 14:35:10 +0900 |
parents | a0939666b836 |
children | f71c97d9b97b |
comparison
equal
deleted
inserted
replaced
30557:cbeb54ec0481 | 30559:d83ca854fa21 |
---|---|
11 from mercurial import ( | 11 from mercurial import ( |
12 hg, | 12 hg, |
13 ui as uimod, | 13 ui as uimod, |
14 ) | 14 ) |
15 | 15 |
16 myui = uimod.ui() | 16 myui = uimod.ui.load() |
17 repo = hg.repository(myui, path='.', create=True) | 17 repo = hg.repository(myui, path='.', create=True) |
18 | 18 |
19 fl = repo.file('foobar') | 19 fl = repo.file('foobar') |
20 | 20 |
21 def addrev(text, renamed=False): | 21 def addrev(text, renamed=False): |