Mercurial > hg
comparison tests/test-hg-parseurl.py @ 8174:29bc5d18714a
hg: allow hg.parseurl(url, None)
In many places hg.parseurl is called with a url and "opts.get('rev')",
suggesting the second, optional argument can be None. Because opts['rev']
usually defaults to [] this never happens in practice.
However, extensions don't necessarily behave the same, but do copy this
pattern.
Also, include wider hg.parseurl tests, beyond a demonstration of the problem.
author | Martijn Pieters <mj@zopatista.com> |
---|---|
date | Fri, 24 Apr 2009 18:17:42 +0200 |
parents | |
children | d757bc0c7865 |
comparison
equal
deleted
inserted
replaced
8173:d3fb413667e5 | 8174:29bc5d18714a |
---|---|
1 #!/usr/bin/env python | |
2 | |
3 from mercurial.hg import parseurl | |
4 | |
5 def testparse(url, rev=[]): | |
6 print '%s, revs: %r, checkout: %r' % parseurl(url, rev) | |
7 | |
8 testparse('http://example.com/no/anchor') | |
9 testparse('http://example.com/an/anchor#foo') | |
10 testparse('http://example.com/no/anchor/revs', rev=['foo']) | |
11 testparse('http://example.com/an/anchor/revs#bar', rev=['foo']) | |
12 testparse('http://example.com/an/anchor/rev-None#foo', rev=None) |