Mercurial > hg-stable
view tests/test-mdiff.py @ 36240:707aba4d48b5
progress: use '%*d' to pad progress value
Follows up 7f5108e58083. The problem of '% Nd' is that ' ' means we want
{' ' or '-'} as a sign character. We should instead write '%Nd' to pad up
to N characters with space, and N can be '*'.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Wed, 14 Feb 2018 21:36:15 +0900 |
parents | 1ab7b16c9437 |
children | 58c1368ab629 |
line wrap: on
line source
from __future__ import absolute_import from __future__ import print_function import unittest from mercurial import ( mdiff, ) class splitnewlinesTests(unittest.TestCase): def test_splitnewlines(self): cases = {'a\nb\nc\n': ['a\n', 'b\n', 'c\n'], 'a\nb\nc': ['a\n', 'b\n', 'c'], 'a\nb\nc\n\n': ['a\n', 'b\n', 'c\n', '\n'], '': [], 'abcabc': ['abcabc'], } for inp, want in cases.iteritems(): self.assertEqual(mdiff.splitnewlines(inp), want) if __name__ == '__main__': import silenttestrunner silenttestrunner.main(__name__)