/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/https_server.py

Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
 
135
135
    # urls returned by this server should require the urllib client impl
136
136
    _url_protocol = 'https+urllib'
137
 
 
138
 
 
139
 
class HTTPSServer_PyCurl(HTTPSServer):
140
 
    """Subclass of HTTPSServer that gives http+pycurl urls.
141
 
 
142
 
    This is for use in testing: connections to this server will always go
143
 
    through pycurl where possible.
144
 
    """
145
 
 
146
 
    # We don't care about checking the pycurl availability as
147
 
    # this server will be required only when pycurl is present
148
 
 
149
 
    # urls returned by this server should require the pycurl client impl
150
 
    _url_protocol = 'https+pycurl'