/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/test_wsgi.py

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-09 21:36:27 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210109213627-h1xwcutzy9m7a99b
Added 'Case Preserving Working Tree Use Cases' from Canonical Wiki

* Addod a page from the Canonical Bazaar wiki
  with information on the scmeatics of case
  perserving filesystems an a case insensitive
  filesystem works.
  
  * Needs re-work, but this will do as it is the
    same inforamoton as what was on the linked
    page in the currint documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for WSGI application"""
18
18
 
 
19
from io import BytesIO
 
20
 
19
21
from .. import tests
20
 
from ..sixish import (
21
 
    BytesIO,
22
 
    )
23
22
from ..bzr.smart import medium, protocol
24
23
from ..transport.http import wsgi
25
24
from ..transport import chroot, memory
283
282
        response_bytes = self.read_response(iterable)
284
283
        self.assertEqual('200 OK', self.status)
285
284
        # expect a successful response, rather than a jail break error
286
 
        from breezy.tests.test_smart_transport import LoggingMessageHandler
 
285
        from breezy.bzr.tests.test_smart_transport import LoggingMessageHandler
287
286
        message_handler = LoggingMessageHandler()
288
287
        decoder = protocol.ProtocolThreeDecoder(
289
288
            message_handler, expect_version_marker=True)