##// END OF EJS Templates
log: fix crash on empty revision with --copies switch...
log: fix crash on empty revision with --copies switch If a revset is empty, .max() raises ValueError. I don't see any reason to recompute the revs, so I made it reuse the one returned by logcmdutil.getrevs(). If no revs specified by command line, the endrev will be smartset.spanset(repo) + 1, which is basically the same as len(repo), the default of getrenamedfn(). If --follow specified, revs.max() points to the working parent, which seems more correct.

File last commit:

r36346:8d0b0b53 default
r37794:141017c7 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__)