summaryrefslogtreecommitdiff
path: root/tests/test-hg-parseurl.py
blob: 83c4832ad49311d7c65f6c1ea86f24488e8cb756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from mercurial.hg import parseurl

def testparse(url, branch=[]):
    print '%s, branches: %r' % parseurl(url, branch)

testparse('http://example.com/no/anchor')
testparse('http://example.com/an/anchor#foo')
testparse('http://example.com/no/anchor/branches', branch=['foo'])
testparse('http://example.com/an/anchor/branches#bar', branch=['foo'])
testparse('http://example.com/an/anchor/branches-None#foo', branch=None)
testparse('http://example.com/')
testparse('http://example.com')
testparse('http://example.com#foo')