Mercurial > hg
view tests/test-match.py @ 36003:fcde8946c553
logcmdutil: hold makefilematcher/makehunksfilter() by changesetpriner (API)
This merges self.matchfn and self.show(matchfn) into self._makefilematcher,
and does the same for hunksfilter. Because changesetprinter seems to have
too many optional arguments, makefilematcher() and makehunksfilter() will
be packed into one object by later patch.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 21 Jan 2018 14:07:52 +0900 |
parents | 44bc181b9835 |
children | 987d3a4b989f |
line wrap: on
line source
from __future__ import absolute_import import unittest import silenttestrunner from mercurial import ( match as matchmod, ) class NeverMatcherTests(unittest.TestCase): def testVisitdir(self): m = matchmod.nevermatcher('', '') self.assertFalse(m.visitdir('.')) self.assertFalse(m.visitdir('dir')) if __name__ == '__main__': silenttestrunner.main(__name__)