~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

  • Committer: Martin Pool
  • Date: 2006-06-20 05:32:16 UTC
  • mfrom: (1797 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1798.
  • Revision ID: mbp@sourcefrog.net-20060620053216-817857d7ca3e9d1f
[merge] bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
700
700
        except NotImplementedError:
701
701
            raise TestSkipped("Transport %s has no bogus URL support." %
702
702
                              self._server.__class__)
703
 
        t = bzrlib.transport.get_transport(url)
704
703
        try:
 
704
            t = bzrlib.transport.get_transport(url)
705
705
            t.get('.bzr/branch')
706
706
        except (ConnectionError, NoSuchFile), e:
707
707
            pass
922
922
                ]
923
923
 
924
924
        try:
925
 
            self.build_tree(files, transport=t)
 
925
            self.build_tree(files, transport=t, line_endings='binary')
926
926
        except UnicodeError:
927
927
            raise TestSkipped("cannot handle unicode paths in current encoding")
928
928