mercurial/hg.py
changeset 20799 069bf1b821c8
parent 20790 49f2d5644f04
child 20800 8253e55930a3
--- 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):