##// END OF EJS Templates
tests: use pattern matching to mask `ECONNREFUSED` messages...
tests: use pattern matching to mask `ECONNREFUSED` messages The second and third one of these in `test-http-proxy.t` was failing on Windows. The others were found by grep and by failed tests when output was matched and an attempt was made to emit the mask pattern. The first clonebundles failure on Windows emitted: error fetching bundle: [WinError 10061] $ECONNREFUSED$ We should probably stringify that better to get rid of the "[WinError 10061]" part.

File last commit:

r49730:6000f5b2 default
r52835:73a43fe3 default
Show More
test-mdiff.py
22 lines | 567 B | text/x-python | PythonLexer
Augie Fackler
tests: start a set of unit tests for mdiff.py, starting with splitnewlines...
r35880 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__)