# HG changeset patch # User Yuya Nishihara # Date 1395416768 -32400 # Node ID 069bf1b821c8015596f2926090cb274e4a0ee727 # Parent 170d6d591a7dbc09bfe1b509dfd8f39991e653a9 clone: add doctest for default destination diff -r 170d6d591a7d -r 069bf1b821c8 mercurial/hg.py --- a/mercurial/hg.py Thu Mar 20 09:55:44 2014 -0700 +++ b/mercurial/hg.py Sat Mar 22 00:46:08 2014 +0900 @@ -123,7 +123,21 @@ return _peerorrepo(rui, path, create).peer() def defaultdest(source): - '''return default destination of clone if none is given''' + '''return default destination of clone if none is given + + >>> defaultdest('foo') + 'foo' + >>> defaultdest('/foo/bar') + 'bar' + >>> defaultdest('/') + '' + >>> defaultdest('') + '.' + >>> defaultdest('http://example.org/') + '.' + >>> defaultdest('http://example.org/foo/') + 'foo' + ''' return os.path.basename(os.path.normpath(util.url(source).path or '')) def share(ui, source, dest=None, update=True): diff -r 170d6d591a7d -r 069bf1b821c8 tests/test-doctest.py --- a/tests/test-doctest.py Thu Mar 20 09:55:44 2014 -0700 +++ b/tests/test-doctest.py Sat Mar 22 00:46:08 2014 +0900 @@ -15,6 +15,7 @@ testmod('mercurial.dagparser', optionflags=doctest.NORMALIZE_WHITESPACE) testmod('mercurial.dispatch') testmod('mercurial.encoding') +testmod('mercurial.hg') testmod('mercurial.hgweb.hgwebdir_mod') testmod('mercurial.match') testmod('mercurial.minirst')