##// END OF EJS Templates
phases: replace magic number by constant...
phases: replace magic number by constant Differential Revision: https://phab.mercurial-scm.org/D8695

File last commit:

r43346:2372284d default
r45609:31f111d4 default
Show More
test-mdiff.py
25 lines | 645 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
Augie Fackler
formatting: blacken the codebase...
r43346 from mercurial import mdiff
Augie Fackler
tests: start a set of unit tests for mdiff.py, starting with splitnewlines...
r35880
class splitnewlinesTests(unittest.TestCase):
def test_splitnewlines(self):
Augie Fackler
formatting: blacken the codebase...
r43346 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'],
}
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)
Augie Fackler
formatting: blacken the codebase...
r43346
Augie Fackler
tests: start a set of unit tests for mdiff.py, starting with splitnewlines...
r35880 if __name__ == '__main__':
import silenttestrunner
Augie Fackler
formatting: blacken the codebase...
r43346
Augie Fackler
tests: start a set of unit tests for mdiff.py, starting with splitnewlines...
r35880 silenttestrunner.main(__name__)