##// END OF EJS Templates
util: make new timedcmstats class Python 3 compatible
util: make new timedcmstats class Python 3 compatible

File last commit:

r36346:8d0b0b53 default
r38848:9d49bb11 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__)