~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testtransport.py

  • Committer: John Arbash Meinel
  • Date: 2005-09-17 21:57:11 UTC
  • mto: (1393.2.1)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050917215711-9fa31e650a1f2fd8
Got HttpTransport tests to pass. Check for EAGAIN, pass permit_failure around, etc

Show diffs side-by-side

added added

removed removed

Lines of Context:
178
178
    def test_http_transport(self):
179
179
        from bzrlib.transport.http import HttpTransport
180
180
 
181
 
        t = HttpTransport(self.get_remote_url('.'))
 
181
        url = self.get_remote_url('.')
 
182
        t = HttpTransport(url)
182
183
        test_transport(self, t, readonly=True)
183
184