/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 bzrlib/tests/test_smart_transport.py

  • Committer: Alexander Belchenko
  • Date: 2007-10-04 05:50:44 UTC
  • mfrom: (2881 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2884.
  • Revision ID: bialix@ukr.net-20071004055044-pb88kgkfayawro8n
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1208
1208
        self.assertIsInstance(t, remote.RemoteSSHTransport)
1209
1209
        self.assertEqual('example.com', t._host)
1210
1210
 
 
1211
    def test_bzr_https(self):
 
1212
        # https://bugs.launchpad.net/bzr/+bug/128456
 
1213
        t = get_transport('bzr+https://example.com/path')
 
1214
        self.assertIsInstance(t, remote.RemoteHTTPTransport)
 
1215
        self.assertStartsWith(
 
1216
            t._http_transport.base,
 
1217
            'https://')
 
1218
 
1211
1219
 
1212
1220
class TestRemoteTransport(tests.TestCase):
1213
1221