##// END OF EJS Templates
issue6528: add a config option to control the fixing on the fly...
issue6528: add a config option to control the fixing on the fly This will allow people who know to be safe to avoid any performance overhead (and other potential issue). Differential Revision: https://phab.mercurial-scm.org/D11271

File last commit:

r47670:4452cb78 default
r48630:2813d406 5.9rc1 stable
Show More
test-hg-parseurl.py
54 lines | 1.7 KiB | text/x-python | PythonLexer
/ tests / test-hg-parseurl.py
Robert Stanca
py3: use print_function in test-hg-parseurl.py
r28746 from __future__ import absolute_import, print_function
Yuya Nishihara
test-hg-parseurl: stop direct symbol import of mercurial.hg.parseurl
r28806
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731 import unittest
urlutil: extract `parseurl` from `hg` into the new module...
r47670 from mercurial.utils import urlutil
Augie Fackler
formatting: blacken the codebase...
r43346
Martijn Pieters
hg: allow hg.parseurl(url, None)...
r8174
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731 class ParseRequestTests(unittest.TestCase):
def testparse(self):
Martijn Pieters
hg: allow hg.parseurl(url, None)...
r8174
Augie Fackler
formatting: blacken the codebase...
r43346 self.assertEqual(
urlutil: extract `parseurl` from `hg` into the new module...
r47670 urlutil.parseurl(b'http://example.com/no/anchor'),
Augie Fackler
formatting: blacken the codebase...
r43346 (b'http://example.com/no/anchor', (None, [])),
)
self.assertEqual(
urlutil: extract `parseurl` from `hg` into the new module...
r47670 urlutil.parseurl(b'http://example.com/an/anchor#foo'),
Augie Fackler
formatting: blacken the codebase...
r43346 (b'http://example.com/an/anchor', (b'foo', [])),
)
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731 self.assertEqual(
urlutil: extract `parseurl` from `hg` into the new module...
r47670 urlutil.parseurl(
b'http://example.com/no/anchor/branches', [b'foo']
),
Augie Fackler
formatting: blacken the codebase...
r43346 (b'http://example.com/no/anchor/branches', (None, [b'foo'])),
)
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731 self.assertEqual(
urlutil: extract `parseurl` from `hg` into the new module...
r47670 urlutil.parseurl(
b'http://example.com/an/anchor/branches#bar', [b'foo']
),
Augie Fackler
formatting: blacken the codebase...
r43346 (b'http://example.com/an/anchor/branches', (b'bar', [b'foo'])),
)
self.assertEqual(
urlutil: extract `parseurl` from `hg` into the new module...
r47670 urlutil.parseurl(
Augie Fackler
formatting: blacken the codebase...
r43346 b'http://example.com/an/anchor/branches-None#foo', None
),
(b'http://example.com/an/anchor/branches-None', (b'foo', [])),
)
self.assertEqual(
urlutil: extract `parseurl` from `hg` into the new module...
r47670 urlutil.parseurl(b'http://example.com/'),
Augie Fackler
formatting: blacken the codebase...
r43346 (b'http://example.com/', (None, [])),
)
self.assertEqual(
urlutil: extract `parseurl` from `hg` into the new module...
r47670 urlutil.parseurl(b'http://example.com'),
Augie Fackler
formatting: blacken the codebase...
r43346 (b'http://example.com/', (None, [])),
)
self.assertEqual(
urlutil: extract `parseurl` from `hg` into the new module...
r47670 urlutil.parseurl(b'http://example.com#foo'),
Augie Fackler
formatting: blacken the codebase...
r43346 (b'http://example.com/', (b'foo', [])),
)
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731
if __name__ == '__main__':
import silenttestrunner
Augie Fackler
formatting: blacken the codebase...
r43346
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731 silenttestrunner.main(__name__)