##// END OF EJS Templates
util: extract all date-related utils in utils/dateutil module...
util: extract all date-related utils in utils/dateutil module With this commit, util.py lose 262 lines Note for extensions author, if this commit breaks your extension, you can pull the step-by-step split here to help you more easily pinpoint the renaming that broke your extension: hg pull https://bitbucket.org/octobus/mercurial-devel/ -r ac1f6453010d Differential Revision: https://phab.mercurial-scm.org/D2282

File last commit:

r36346:8d0b0b53 default
r36625:c6061cad default
Show More
test-mdiff.py
24 lines | 668 B | text/x-python | PythonLexer
Augie Fackler
tests: start a set of unit tests for mdiff.py, starting with splitnewlines...
r35880 from __future__ import absolute_import
from __future__ import print_function
import unittest
from mercurial import (
mdiff,
)
class splitnewlinesTests(unittest.TestCase):
def test_splitnewlines(self):
Pulkit Goyal
py3: add b'' prefixes in test-mdiff.py...
r36346 cases = {b'a\nb\nc\n': [b'a\n', b'b\n', b'c\n'],
b'a\nb\nc': [b'a\n', b'b\n', b'c'],
b'a\nb\nc\n\n': [b'a\n', b'b\n', b'c\n', b'\n'],
b'': [],
b'abcabc': [b'abcabc'],
Augie Fackler
tests: start a set of unit tests for mdiff.py, starting with splitnewlines...
r35880 }
Pulkit Goyal
py3: use dict.items() instead of dict.iteritems() in tests...
r36345 for inp, want in cases.items():
Augie Fackler
tests: start a set of unit tests for mdiff.py, starting with splitnewlines...
r35880 self.assertEqual(mdiff.splitnewlines(inp), want)
if __name__ == '__main__':
import silenttestrunner
silenttestrunner.main(__name__)